Searched defs:fromcode (Results 1 - 4 of 4) sorted by relevance
/illumos-gate/usr/src/lib/libfakekernel/common/ |
H A D | kiconv.c | 28 kiconv_open(const char *tocode, const char *fromcode) argument 30 return (iconv_open(tocode, fromcode));
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | iconv.c | 67 * /usr/lib/iconv/fromcode%tocode.so 69 * where fromcode is the source encoding and tocode is the target encoding. 72 * If there is no code conversion supported and if the fromcode and the tocode 87 iconv_open(const char *tocode, const char *fromcode) argument 104 cd->_conv = iconv_open_all(tocode, fromcode, ipath); 114 cd->_conv = iconv_search_alias(tocode, fromcode, ipath); 118 * As the last resort, check if the tocode and the fromcode 122 if (strcasecmp(tocode, fromcode) != 0) { 241 * /usr/lib/iconv/geniconvtbl/binarytables/fromcode%tocode.bt 274 iconv_search_alias(const char *tocode, const char *fromcode, cha argument [all...] |
/illumos-gate/usr/src/uts/common/sys/ |
H A D | kiconv.h | 40 * Supported fromcode/tocode values are saved in the following component type 41 * of (name, id) pair. The id values of fromcode and tocode are used to 50 * Each unique kiconv code conversion identified by tocode and fromcode ids 56 uint16_t fid; /* fromcode id. */ 84 char *fromcode; member in struct:__anon8029
|
/illumos-gate/usr/src/uts/common/os/ |
H A D | kiconv.c | 420 * which is the fromcode. In other words, the input buffer 1096 fid = normalize_codename(op->fromcode); 1188 check_and_load_conversions(const char *tocode, const char *fromcode) argument 1201 fid = normalize_codename(fromcode); 1268 kiconv_open(const char *tocode, const char *fromcode) argument 1273 kcd = check_and_load_conversions(tocode, fromcode); 1346 kiconvstr(const char *tocode, const char *fromcode, char *inarray, argument 1353 kcd = check_and_load_conversions(tocode, fromcode);
|
Completed in 72 milliseconds