Home | History | Annotate | Download | only in dist

Lines Matching defs:home

109 expand_path(const char *path, const char *home)
116 if (home == NULL)
118 xasprintf(&expanded, "%s%s", home, path + 1);
144 const char *home = find_home();
154 expanded = expand_path(next, home);
326 static const char *home;
328 if (home != NULL)
329 return (home);
331 home = getenv("HOME");
332 if (home == NULL || *home == '\0') {
335 home = pw->pw_dir;
337 home = NULL;
340 return (home);