Home
last modified time | relevance | path

Searched refs:tocode (Results 1 – 6 of 6) sorted by relevance

/glibc-2.36/iconv/
Dtst-iconv5.c35 const char *tocode; member
52 convert (const char *tocode, const char *fromcode, char *inbufp, in convert() argument
59 ic = iconv_open (tocode, fromcode); in convert()
63 fromcode, tocode, strerror (errno)); in convert()
73 fromcode, tocode, strerror (errno)); in convert()
83 fromcode, tocode, strerror (errno)); in convert()
120 retlen = convert (codes->tocode, codes->fromcode, inbuf, inbytesleft, in test_unalign()
129 retlen = convert (codes->fromcode, codes->tocode, inbuf, inbytesleft, in test_unalign()
152 testcode[i].fromcode, testcode[i].tocode); in do_test()
Dgconv_charset.c165 const char *tocode) in __gconv_create_spec() argument
171 ptc.code = __strdup (tocode); in __gconv_create_spec()
198 conv_spec->tocode = malloc (strlen (tocode) + 3); in __gconv_create_spec()
199 if (conv_spec->tocode == NULL) in __gconv_create_spec()
209 strip (conv_spec->tocode, ptc.code); in __gconv_create_spec()
225 free (conv_spec->tocode); in libc_hidden_def()
Dgconv_open.c43 char *tocode, *fromcode; in __gconv_open() local
51 tocode = conv_spec->tocode; in __gconv_open()
56 if (strcmp (tocode, "//") == 0) in __gconv_open()
61 tocode = dest = (char *) alloca (len + 3); in __gconv_open()
73 res = __gconv_find_transform (tocode, fromcode, &steps, &nsteps, flags); in __gconv_open()
Diconv_open.c31 iconv_open (const char *tocode, const char *fromcode) in iconv_open() argument
36 if (__gconv_create_spec (&conv_spec, fromcode, tocode) == NULL) in iconv_open()
Dgconv_int.h81 char *tocode; member
167 const char *tocode);
/glibc-2.36/manual/
Dcharset.texi1672 @deftypefun iconv_t iconv_open (const char *@var{tocode}, const char *@var{fromcode})
1675 @c Calls malloc if tocode and/or fromcode are too big for alloca. Calls
1702 The conversion from @var{fromcode} to @var{tocode} is not supported.