Searched refs:convert_charset (Results 1 - 14 of 14) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Dmangle.c34 size_t len = convert_charset(vol->v_volcharset, charset,
46 static char buffer[MAXPATHLEN +2]; /* for convert_charset dest_len parameter +2 */
55 char buf[MAX_EXT_LENGTH + 2]; /* for convert_charset dest_len parameter +2 */
75 if ( (size_t) -1 == (len = convert_charset(vol->v_volcharset, vol->v_maccharset, 0,
96 if ((size_t) -1 == (len = convert_charset(vol->v_maccharset, CH_UTF8_MAC, 0,
119 if ( (size_t) -1 == (len = convert_charset(vol->v_volcharset, CH_UTF8_MAC, 0,
248 char ext[MAX_EXT_LENGTH +2]; /* for convert_charset dest_len parameter +2 */
270 size_t n = convert_charset(vol->v_volcharset,
H A Dcatsearch.c99 char utf8name[514]; /* UTF8 or UCS2 name */ /* for convert_charset dest_len parameter +2 */
265 static char convbuf[514]; /* for convert_charset dest_len parameter +2 */
322 if ( (size_t)(-1) == (len = convert_charset( CH_UTF8_MAC, CH_UCS2, CH_UTF8, path->m_name, strlen(path->m_name), convbuf, 512, &flags))) {
732 if (convert_charset(vol->v_volcharset,
1036 len = convert_charset(CH_UTF8_MAC, CH_UCS2, CH_UTF8, c1.utf8name, namelen, c1.utf8name, 512, &flags);
H A Ddesktop.c596 static char upath[ MAXPATHLEN + 2]; /* for convert_charset dest_len parameter +2 */
621 if ((size_t)-1 == (outlen = convert_charset ( (utf8)?CH_UTF8_MAC:vol->v_maccharset, vol->v_volcharset, vol->v_maccharset, m, inplen, u, outlen, &flags)) ) {
637 static char mpath[ MAXPATHLEN + 2]; /* for convert_charset dest_len parameter +2 */
650 if ((size_t)-1 == ( outlen = convert_charset ( vol->v_volcharset, (utf8)?CH_UTF8_MAC:vol->v_maccharset, vol->v_maccharset, u, outlen, mpath, MAXPATHLEN, &flags)) ) {
H A Dvolume.c630 tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
640 tmpvlen = convert_charset(obj->options.unixcharset, CH_UTF8_MAC, 0, name, vlen, tmpname, obj->options.volnamelen - suffixlen, &flags);
656 tmpvlen = convert_charset(obj->options.unixcharset, obj->options.maccharset, 0, name, vlen, tmpname, AFPVOL_U8MNAMELEN, &flags);
666 tmpvlen = convert_charset(obj->options.unixcharset,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/bin/misc/
H A Dnetacnv.c90 if ((size_t)-1 == (convert_charset(from, to, mac,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/bin/ad/
H A Dad_find.c120 if (convert_charset(vol.volinfo.v_volcharset,
H A Dad_util.c158 static char mpath[ MAXPATHLEN + 2]; /* for convert_charset dest_len parameter +2 */
181 if ((size_t)-1 == ( outlen = convert_charset(volinfo->v_volcharset,
233 int len = convert_charset(from,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/etc/cnid_dbd/
H A Dpack.c85 if (convert_charset(volinfo.v_volcharset,
H A Dcmd_dbd_scanvol.c74 static char mpath[ MAXPATHLEN + 2]; /* for convert_charset dest_len parameter +2 */
96 if ((size_t)-1 == ( outlen = convert_charset(myvolinfo->v_volcharset,
113 static char upath[ MAXPATHLEN + 2]; /* for convert_charset dest_len parameter +2 */
147 if ((size_t)-1 == (outlen = convert_charset(CH_UTF8_MAC,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/bin/uniconv/
H A Duniconv.c145 static char buffer[MAXPATHLEN +2]; /* for convert_charset dest_len parameter +2 */
174 outlen = convert_charset(ch_from, ch_to, ch_mac, (char *)p, strlen((char *)p), (char *)q, sizeof(buffer) -2, &flags);
181 outlen = convert_charset(ch_to, ch_to, ch_mac, (char *)p, strlen((char *)p), (char *)q, sizeof(buffer) -2, &flags);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/include/atalk/
H A Dunicode.h143 extern size_t convert_charset (charset_t, charset_t, charset_t, const char *, size_t, char *, size_t, u_int16_t *);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/bin/megatron/
H A Dnad.c318 static char mpath[MAXPATHLEN +2]; /* for convert_charset dest_len parameter +2 */
333 if ((size_t)-1 == ( outlen = convert_charset ( vol.v_volcharset, vol.v_maccharset, vol.v_maccharset, u, outlen, mpath, MAXPATHLEN, &flags)) ) {
353 static char upath[MAXPATHLEN +2]; /* for convert_charset dest_len parameter +2 */
378 if ((size_t)-1 == (outlen = convert_charset ( vol.v_maccharset, vol.v_volcharset, vol.v_maccharset, m, inplen, u, outlen, &flags)) ) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/libatalk/unicode/
H A Dcharcnv.c1032 size_t convert_charset ( charset_t from_set, charset_t to_set, charset_t cap_charset, const char *src, size_t src_len, char *dest, size_t dest_len, u_int16_t *flags) function
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/libatalk/vfs/
H A Dea.c75 static char upath[ MAXPATHLEN + 2]; /* for convert_charset dest_len parameter +2 */
95 if ((size_t)-1 == (outlen = convert_charset(CH_UTF8_MAC,

Completed in 270 milliseconds