Lines Matching defs:path
828 char path[MAXPATHLEN];
880 ret = snprintf(path, sizeof (path),
882 if (ret >= sizeof (path)) {
887 ret = snprintf(path, sizeof (path),
889 if (ret >= sizeof (path)) {
894 if ((fid = open(path, O_RDONLY)) == -1) {
1162 * Function to traverse a symlink path to find the real file at the end of
1166 trav_link(char **path)
1173 (void) strcpy(lastpath, *path);
1174 while ((len = readlink(*path, newpath, sizeof (newpath))) != -1) {
1189 *path = newpath;
1202 remove_component(char *path)
1206 p = strrchr(path, '/'); /* find last '/' */
1208 *path = '\0'; /* set path to null str */