Lines Matching refs:fullpath
96 char fullpath[MAXPATHLEN]; in parse_pathname() local
98 compress_slashes(inpath, fullpath); in parse_pathname()
100 if (fullpath[0] != '/') { in parse_pathname()
102 "path\n", fullpath); in parse_pathname()
107 if (strlen(fullpath) >= MAXPATHLEN) { in parse_pathname()
112 if (stat64(fullpath, statbuf) != 0) { in parse_pathname()
114 fullpath, strerror(errno)); in parse_pathname()
133 fullpath); in parse_pathname()
139 "filesystem\n", fullpath); in parse_pathname()
143 if (strncmp(fullpath, mp.mnt_mountp, strlen(mp.mnt_mountp)) != 0) { in parse_pathname()
145 "doesn't match path\n", fullpath); in parse_pathname()
151 rel = fullpath + strlen(mp.mnt_mountp); in parse_pathname()