Searched refs:cdpath (Results 1 - 6 of 6) sorted by relevance

/opensolaris-onvv-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...]
/opensolaris-onvv-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...]
/opensolaris-onvv-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);
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
H A Dproto.h151 void cdpath(void);
H A Dftpcmd.y1205 cdpath();
2490 void cdpath(void)
2494 lreply(214, "The cdpath is:");
2495 while (getaclentry("cdpath", &entry) && ARG0 != NULL)
H A Dftpd.c5882 char cdpath[MAXPATHLEN];
5898 /* check for "cdpath" directories. */
5900 while (getaclentry("cdpath", &entry) && ARG0 != NULL) {
5901 snprintf(cdpath, sizeof cdpath, "%s/%s", ARG0, path);
5902 if (chdir(cdpath) >= 0) {

Completed in 73 milliseconds