Lines Matching defs:ipath
103 char *ipath;
133 * Memory for ipath is allocated/released in this function.
135 ipath = malloc(MAXPATHLEN);
136 if (ipath == NULL) {
143 cd->_conv = iconv_open_all(to, from, ipath, flag, string_based);
147 free(ipath);
155 to, from, ipath, flag, string_based);
156 free(ipath);
291 iconv_open_all(char *to, char *from, char *ipath, int flag, int string_based)
306 len = snprintf(ipath, MAXPATHLEN, _GENICONVTBL_PATH, from, to);
307 if ((len <= MAXPATHLEN) && (access(ipath, R_OK) == 0)) {
311 cv = iconv_open_private(_GENICONVTBL_INT_PATH, ipath,
320 len = snprintf(ipath, MAXPATHLEN, _ICONV_PATH, from, to);
321 if ((len <= MAXPATHLEN) && (access(ipath, R_OK) == 0)) {
326 return (iconv_open_private(ipath, NULL, flag, string_based));
335 const char *tocode, const char *fromcode, char *ipath,
402 cv = iconv_open_all(*to_canonical, *from_canonical, ipath,