Lines Matching +defs:pathname +defs:name
18 * 3. Neither the name of the University nor the names of its contributors
54 * 4. Neither the name of the University nor the names of its contributors
939 const char *name = ln->datum;
940 Global_Append(".TARGETS", name);
1380 * MAKE also gets this name, for compatibility
1630 char *name, *path = NULL;
1637 name = Dir_FindHereOrAbove(curdir, fname + 4);
1638 if (name != NULL) {
1640 path = str_concat3(name, "/",
1642 free(name);
1650 /* if we've chdir'd, rebuild the path name */
1673 name = Dir_FindFile(fname, parseIncPath);
1674 if (name == NULL) {
1677 name = Dir_FindFile(fname, sysInc);
1679 if (name == NULL || (fd = open(name, O_RDONLY)) == -1) {
1680 free(name);
1684 fname = name;
1944 * POSIX says for unlink: "The path argument shall not name
2003 cached_realpath(const char *pathname, char *resolved)
2007 if (pathname == NULL || pathname[0] == '\0')
2010 rp = HashTable_FindValue(&cached_realpaths, pathname);
2016 rp = realpath(pathname, resolved);
2018 HashTable_Set(&cached_realpaths, pathname, bmake_strdup(rp));
2019 DEBUG2(DIR, "cached_realpath: %s -> %s\n", pathname, rp);
2059 Global_Set(".ERROR_TARGET", gn->name);
2098 printf("%s", mainNode->name);