Lines Matching refs:pathname
147 char *pathname; in mkpathname() local
149 pathname = ecalloc(strlen(dirname) + strlen(filename) + 2, sizeof(char)); in mkpathname()
150 strcpy(pathname, dirname); in mkpathname()
151 strcat(pathname, PATHNAME_SEP); in mkpathname()
152 strcat(pathname, filename); in mkpathname()
153 return (pathname); in mkpathname()
162 char *pathname; in homefile() local
165 pathname = mkpathname(p, filename); in homefile()
168 pathname = mkpathname(p, filename); in homefile()
173 pathname = mkpathname(".", filename); in homefile()
175 return (pathname); in homefile()