Home | History | Annotate | Download | only in ksh

Lines Matching refs:pathx

119 simplify_path(pathx)
120 char *pathx;
125 char *very_start = pathx;
128 if (!*pathx)
131 if ((isrooted = ISROOTEDPATH(pathx)))
150 if (cur == pathx)
187 set_current_wd(pathx)
188 char *pathx;
191 char *p = pathx;
201 if (p != pathx && p != null)
207 get_phys_path(pathx)
208 const char *pathx;
213 Xinit(xs, xp, strlen(pathx) + 1, ATEMP);
215 xp = do_phys_path(&xs, xp, pathx);
228 do_phys_path(xsp, xp, pathx)
231 const char *pathx;
239 for (p = pathx; p; p = q) {