Searched defs:cdpath (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/sh/
H A Dbltin.c181 unsigned char *cdpath; local
185 if ((cdpath = cdpnod.namval) == 0 ||
190 cdpath = (unsigned char *)nullstr;
194 dir = cdpath;
195 cdpath = catpath(cdpath,a1);
198 cdpath);
/illumos-gate/usr/src/lib/libshell/common/bltins/
H A Dcd_pwd.c55 Pathcomp_t *cdpath = 0; local
101 if(!(cdpath = (Pathcomp_t*)shp->cdpathlist) && (dp=(CDPNOD)->nvalue.cp))
103 if(cdpath=path_addpath((Pathcomp_t*)0,dp,PATH_CDPATH))
105 shp->cdpathlist = (void*)cdpath;
106 cdpath->shp = shp;
118 cdpath = 0;
123 dp = cdpath?cdpath->name:"";
124 cdpath = path_nextcomp(cdpath,di
[all...]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Diconv.c340 iconv_p cdpath; local
342 if ((cdpath = malloc(sizeof (struct _iconv_fields))) == NULL)
345 if ((cdpath->_icv_handle = dlopen(lib, RTLD_LAZY)) == 0) {
346 free(cdpath);
353 if ((fptr = (iconv_t(*)(const char *))dlsym(cdpath->_icv_handle,
355 (void) dlclose(cdpath->_icv_handle);
356 free(cdpath);
364 * and stores it in cdpath->_icv_iconv
367 if ((cdpath->_icv_iconv = (size_t(*)(iconv_t, const char **,
368 size_t *, char **, size_t *))dlsym(cdpath
[all...]

Completed in 771 milliseconds