Searched refs:iconv_t (Results 1 - 25 of 67) sorted by relevance

123

/macosx-10.9.5/curl-78.94.1/curl/src/
H A Dtool_convert.c37 static iconv_t inbound_cd = (iconv_t)-1;
38 static iconv_t outbound_cd = (iconv_t)-1;
56 if(outbound_cd == (iconv_t)-1) {
59 if(outbound_cd == (iconv_t)-1) {
86 if(inbound_cd == (iconv_t)-1) {
89 if(inbound_cd == (iconv_t)-1) {
108 if(inbound_cd != (iconv_t)-1)
110 if(outbound_cd != (iconv_t)
[all...]
/macosx-10.9.5/gnutar-452/gnutar/src/
H A Dutf8.c34 # define iconv_open(tocode, fromcode) ((iconv_t) -1)
48 static iconv_t conv_desc[2] = { (iconv_t) -1, (iconv_t) -1 };
50 static iconv_t
53 if (conv_desc[(int) to_utf] == (iconv_t) -1)
71 iconv_t cd = utf8_init (to_utf);
78 else if (cd == (iconv_t)-1)
/macosx-10.9.5/libiconv-41/install/
H A Diconv.h32 iconv_t, 1. in order to eliminate the risk that the user gets compilation
34 which defines iconv_t or declares iconv after this file, 2. when compiling
35 for LIBICONV_PLUG, we need the proper iconv_t type in order to produce
44 Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It
45 has to be a scalar type because (iconv_t)(-1) is a possible return value
48 /* Define iconv_t ourselves. */
51 typedef void* iconv_t; typedef
62 iconv_t iconv_open (const char* /*tocode*/, const char* /*fromcode*/);
69 size_t iconv (iconv_t /*cd*/,
74 int iconv_close (iconv_t /*c
[all...]
/macosx-10.9.5/libiconv-41/libiconv/include/
H A Diconv.h38 iconv_t, 1. in order to eliminate the risk that the user gets compilation
40 which defines iconv_t or declares iconv after this file, 2. when compiling
41 for LIBICONV_PLUG, we need the proper iconv_t type in order to produce
50 Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It
51 has to be a scalar type because (iconv_t)(-1) is a possible return value
54 /* Define iconv_t ourselves. */
57 typedef void* iconv_t; typedef
68 extern LIBICONV_DLL_EXPORTED iconv_t iconv_open (const char* tocode, const char* fromcode);
75 extern LIBICONV_DLL_EXPORTED size_t iconv (iconv_t cd, char* * __restrict inbuf, size_t * __restrict inbytesleft, char* * __restrict outbuf, size_t * __restrict outbytesleft);
78 extern LIBICONV_DLL_EXPORTED int iconv_close (iconv_t c
[all...]
H A Diconv.h.msvc-shared34 iconv_t, 1. in order to eliminate the risk that the user gets compilation
36 which defines iconv_t or declares iconv after this file, 2. when compiling
37 for LIBICONV_PLUG, we need the proper iconv_t type in order to produce
46 Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It
47 has to be a scalar type because (iconv_t)(-1) is a possible return value
50 /* Define iconv_t ourselves. */
51 #undef iconv_t
52 #define iconv_t libiconv_t
53 typedef void* iconv_t;
79 extern LIBICONV_DLL_EXPORTED iconv_t iconv_ope
[all...]
H A Diconv.h.msvc-static28 iconv_t, 1. in order to eliminate the risk that the user gets compilation
30 which defines iconv_t or declares iconv after this file, 2. when compiling
31 for LIBICONV_PLUG, we need the proper iconv_t type in order to produce
40 Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It
41 has to be a scalar type because (iconv_t)(-1) is a possible return value
44 /* Define iconv_t ourselves. */
45 #undef iconv_t
46 #define iconv_t libiconv_t
47 typedef void* iconv_t;
73 extern iconv_t iconv_ope
[all...]
H A Diconv.h_vms28 iconv_t, 1. in order to eliminate the risk that the user gets compilation
30 which defines iconv_t or declares iconv after this file, 2. when compiling
31 for LIBICONV_PLUG, we need the proper iconv_t type in order to produce
40 Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It
41 has to be a scalar type because (iconv_t)(-1) is a possible return value
44 /* Define iconv_t ourselves. */
45 #undef iconv_t
46 #define iconv_t libiconv_t
47 typedef void* iconv_t;
73 extern iconv_t iconv_ope
[all...]
H A Diconv.h.build.in41 iconv_t, 1. in order to eliminate the risk that the user gets compilation
43 which defines iconv_t or declares iconv after this file, 2. when compiling
44 for LIBICONV_PLUG, we need the proper iconv_t type in order to produce
53 Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It
54 has to be a scalar type because (iconv_t)(-1) is a possible return value
57 /* Define iconv_t ourselves. */
60 typedef void* iconv_t;
71 extern LIBICONV_DLL_EXPORTED iconv_t iconv_open (const char* tocode, const char* fromcode);
78 extern LIBICONV_DLL_EXPORTED size_t iconv (iconv_t cd, char* * __restrict inbuf, size_t * __restrict inbytesleft, char* * __restrict outbuf, size_t * __restrict outbytesleft);
81 extern LIBICONV_DLL_EXPORTED int iconv_close (iconv_t c
[all...]
H A Diconv.h.in35 iconv_t, 1. in order to eliminate the risk that the user gets compilation
37 which defines iconv_t or declares iconv after this file, 2. when compiling
38 for LIBICONV_PLUG, we need the proper iconv_t type in order to produce
47 Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It
48 has to be a scalar type because (iconv_t)(-1) is a possible return value
51 /* Define iconv_t ourselves. */
54 typedef void* iconv_t;
65 iconv_t iconv_open (const char* /*tocode*/, const char* /*fromcode*/);
72 size_t iconv (iconv_t /*cd*/,
77 int iconv_close (iconv_t /*c
[all...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dnon-ascii.c105 if(data->outbound_cd == (iconv_t)-1) {
108 if(data->outbound_cd == (iconv_t)-1) {
166 if(data->inbound_cd == (iconv_t)-1) {
169 if(data->inbound_cd == (iconv_t)-1) {
228 if(data->utf8_cd == (iconv_t)-1) {
231 if(data->utf8_cd == (iconv_t)-1) {
273 data->outbound_cd = (iconv_t)-1;
274 data->inbound_cd = (iconv_t)-1;
275 data->utf8_cd = (iconv_t)-1;
302 if(data->inbound_cd != (iconv_t)
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/darwin/
H A Dcs_s_conv.c121 iconv_t cd;
152 if ((cd = iconv_open(iconv_to_cd, iconv_from_cd)) == (iconv_t)-1)
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/freebsd6.0/
H A Dcs_s_conv.c121 iconv_t cd;
152 if ((cd = iconv_open(iconv_to_cd, iconv_from_cd)) == (iconv_t)-1)
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/hpux11.11/
H A Dcs_s_conv.c121 iconv_t cd;
152 if ((cd = iconv_open(iconv_to_cd, iconv_from_cd)) == (iconv_t)-1)
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/linux-gnu/
H A Dcs_s_conv.c121 iconv_t cd;
152 if ((cd = iconv_open(iconv_to_cd, iconv_from_cd)) == (iconv_t)-1)
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/solaris2.10/
H A Dcs_s_conv.c121 iconv_t cd;
152 if ((cd = iconv_open(iconv_to_cd, iconv_from_cd)) == (iconv_t)-1)
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/solaris2.8/
H A Dcs_s_conv.c121 iconv_t cd;
152 if ((cd = iconv_open(iconv_to_cd, iconv_from_cd)) == (iconv_t)-1)
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/solaris2.9/
H A Dcs_s_conv.c121 iconv_t cd;
152 if ((cd = iconv_open(iconv_to_cd, iconv_from_cd)) == (iconv_t)-1)
/macosx-10.9.5/tidy-15.12/tidy/src/
H A Diconvtc.c35 iconv_t cd;
46 cd = (iconv_t)in->iconvptr;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dcatopen.c58 iconv_t cvt;
116 if ((cc->cvt = iconv_open("", "utf")) == (iconv_t)(-1) || !(cc->tmp = sfstropen()))
123 cc->cvt = (iconv_t)(-1);
151 if (((Cc_t*)cat)->cvt != (iconv_t)(-1))
173 if (((Cc_t*)cat)->cvt != (iconv_t)(-1))
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dtranscode.c45 static iconv_t map_from_utf8 = (iconv_t)-1;
47 static iconv_t map_to_utf8 = (iconv_t)-1;
62 if (map_from_utf8 != (iconv_t)-1)
65 map_from_utf8 = (iconv_t)-1;
68 if (map_to_utf8 != (iconv_t)-1)
71 map_to_utf8 = (iconv_t)-1;
172 if (map_to_utf8 != (iconv_t)-1)
297 if (map_from_utf8 != (iconv_t)
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/aix5.2.0.0/
H A Dcs_s_conv.c134 iconv_t cd;
165 if ((cd = iconv_open(iconv_to_cd, iconv_from_cd)) == (iconv_t)-1)
/macosx-10.9.5/libiconv-41/libiconv/tests/
H A Dtable-to.c35 iconv_t cd;
49 if (cd == (iconv_t)(-1)) {
H A Dtable-from.c48 static int try (iconv_t cd, unsigned char buf[], unsigned int buflen, unsigned int* out)
102 iconv_t cd;
116 if (cd == (iconv_t)(-1)) {
/macosx-10.9.5/libiconv-41/libiconv/lib/
H A Diconv.c57 size_t (*loop_convert) (iconv_t icd,
60 size_t (*loop_reset) (iconv_t icd,
199 iconv_t iconv_open (const char* tocode, const char* fromcode)
374 return (iconv_t)(-1);
430 return (iconv_t)cd;
433 return (iconv_t)(-1);
436 size_t iconv (iconv_t icd,
449 int iconv_close (iconv_t icd)
458 int iconvctl (iconv_t icd, int request, void* argument)
723 iconv_t
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dconverter.c800 iconv_t *ictxp;
809 ictxp = (iconv_t *)*privdata;
811 if (*ictxp == (iconv_t)(-1)) {
830 iconv_t *ictxp;
839 ictxp = (iconv_t *)*privdata + 1;
841 if (*ictxp == (iconv_t)(-1)) {
861 *privdata = malloc(sizeof(iconv_t) * 2);
864 *((iconv_t *)*privdata) = (iconv_t)(-1);
865 *((iconv_t *)*privdat
[all...]

Completed in 456 milliseconds

123