Searched refs:tocode (Results 26 - 34 of 34) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/utf8/
H A Dutf8.c263 static int convert_buffer(const char *fromcode, const char *tocode, argument
270 ret = iconvert(fromcode, tocode, from, fromlen, to, tolen);
276 ret = charset_convert(fromcode, tocode, from, fromlen, to, tolen);
284 static int convert_string(const char *fromcode, const char *tocode, argument
292 ret = convert_buffer(fromcode, tocode, from, fromlen, to, 0);
H A Dcharset.c479 * use charset_convert(fromcode, tocode, s, strlen(s), &t, 0).
482 int charset_convert(const char *fromcode, const char *tocode, argument
492 charset2 = charset_find(tocode);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Diconv.c202 smb_iconv_t smb_iconv_open(const char *tocode, const char *fromcode) argument
219 ret->to_name = SMB_STRDUP(tocode);
222 if (strcasecmp(fromcode, tocode) == 0) {
231 to = find_charset_functions(tocode);
245 ret->cd_push = iconv_open(tocode, "UTF-16LE");
247 ret->cd_push = iconv_open(tocode, "UCS-2LE");
261 if (!ret->push && NT_STATUS_IS_OK(smb_probe_module("charset", tocode))) {
262 if(!(to = find_charset_functions(tocode)))
263 DEBUG(0, ("Module %s doesn't provide charset %s!\n", tocode, tocode));
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/unicode/
H A Diconv.c253 atalk_iconv_t atalk_iconv_open(const char *tocode, const char *fromcode) argument
271 ret->to_name = strdup(tocode);
274 if (strcasecmp(fromcode, tocode) == 0) {
283 to = find_charset_functions(tocode);
296 ret->cd_push = iconv_open(to && to->iname ? to->iname : tocode, UCS2ICONV);
319 if (strcasecmp(tocode, "UCS-2") == 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/include/
H A Diconv.h68 encoding `tocode'. */
72 extern iconv_t iconv_open (const char* tocode, const char* fromcode);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/lib/
H A Diconv.c202 iconv_t iconv_open (const char* tocode, const char* fromcode) argument
223 /* Search tocode in the table. */
224 for (cp = tocode, bp = buf, count = MAX_WORD_LENGTH+10+1; ; cp++, bp++) {
252 tocode = locale_charset();
255 if (tocode[0] == '\0')
266 tocode = locale_charset();
269 if (tocode[0] == '\0')
290 tocode = locale_charset();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libiconv-1.11/include/
H A Diconv.h75 encoding `tocode'. */
79 extern LIBICONV_DLL_EXPORTED iconv_t iconv_open (const char* tocode, const char* fromcode);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libiconv-1.11/lib/
H A Diconv.c202 iconv_t iconv_open (const char* tocode, const char* fromcode) argument
223 /* Search tocode in the table. */
224 for (cp = tocode, bp = buf, count = MAX_WORD_LENGTH+10+1; ; cp++, bp++) {
252 tocode = locale_charset();
255 if (tocode[0] == '\0')
266 tocode = locale_charset();
269 if (tocode[0] == '\0')
290 tocode = locale_charset();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/packages/OS400/
H A Dccsidcurl.c85 char tocode[ICONV_ID_SIZE]; local
95 makeOS400IconvCode(tocode, ccsidout);
96 memset(tocode + 13, 0, sizeof tocode - 13); /* Dest. code id format. */
101 return iconv_open(tocode, fromcode);

Completed in 126 milliseconds

12