Home
last modified time | relevance | path

Searched refs:gpath (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dglob.c107 static char *gpath, *gpathp, *lastgpathp; variable
134 gpath = agpath; in glob()
135 gpathp = gpath; in glob()
137 lastgpathp = &gpath[sizeof (agpath) - 2]; in glob()
176 gpathp = gpath; *gpathp = 0; globbed = 0; in acollect()
208 if (*cs == '~' && gpathp == gpath) { in expand()
214 if (gpathp != gpath + 1) { in expand()
216 if (gethdir(gpath + 1)) in expand()
218 (void) strcpy(gpath, gpath + 1); in expand()
220 (void) strcpy(gpath, home); in expand()
[all …]
/illumos-gate/usr/src/cmd/csh/
H A Dsh.glob.c34 tchar *gpath, *gpathp, *lastgpathp; variable
68 gpath = agpath; gpathp = gpath; *gpathp = 0; in glob()
69 lastgpathp = &gpath[BUFSIZ - 2]; in glob()
151 gpathp = gpath; *gpathp = 0; globbed = 0; in acollect()
184 if (*cs == '~' && gpathp == gpath) { in expand()
189 if (gpathp != gpath + 1) { in expand()
191 if (gethdir(gpath + 1)) in expand()
195 error("Unknown user: %t", gpath + 1); in expand()
196 (void) strcpy_(gpath, gpath + 1); in expand()
198 (void) strcpy_(gpath, in expand()
[all …]
/illumos-gate/usr/src/test/os-tests/tests/cores/scripts/
H A Dcoretests.ksh67 typeset gpath="$4"
87 if ! gcore -o "$gpath" -c "$cont" $pid >/dev/null; then