Lines Matching refs:pathname
145 char *pathname; in mkpathname() local
147 pathname = ecalloc(strlen(dirname) + strlen(filename) + 2, sizeof(char)); in mkpathname()
148 strcpy(pathname, dirname); in mkpathname()
149 strcat(pathname, PATHNAME_SEP); in mkpathname()
150 strcat(pathname, filename); in mkpathname()
151 return (pathname); in mkpathname()
160 char *pathname; in homefile() local
163 pathname = mkpathname(p, filename); in homefile()
166 pathname = mkpathname(p, filename); in homefile()
171 pathname = mkpathname(".", filename); in homefile()
173 return (pathname); in homefile()