Lines Matching refs:fullname
2161 char *fullname; /* full pathname of file */ in Parse_include_file() local
2172 fullname = file[0] == '/' ? bmake_strdup(file) : NULL; in Parse_include_file()
2174 if (fullname == NULL && !isSystem) { in Parse_include_file()
2195 fullname = Dir_FindFile(newName, parseIncPath); in Parse_include_file()
2196 if (fullname == NULL) in Parse_include_file()
2197 fullname = Dir_FindFile(newName, dirSearchPath); in Parse_include_file()
2202 if (fullname == NULL) { in Parse_include_file()
2215 fullname = Dir_FindFile(file, suffPath); in Parse_include_file()
2218 if (fullname == NULL) { in Parse_include_file()
2219 fullname = Dir_FindFile(file, parseIncPath); in Parse_include_file()
2220 if (fullname == NULL) { in Parse_include_file()
2221 fullname = Dir_FindFile(file, dirSearchPath); in Parse_include_file()
2228 if (fullname == NULL) { in Parse_include_file()
2232 fullname = Dir_FindFile(file, in Parse_include_file()
2236 if (fullname == NULL) { in Parse_include_file()
2243 fd = open(fullname, O_RDONLY); in Parse_include_file()
2246 Parse_Error(PARSE_FATAL, "Cannot open %s", fullname); in Parse_include_file()
2247 free(fullname); in Parse_include_file()
2252 lf = loadfile(fullname, fd); in Parse_include_file()
2256 Parse_SetInput(fullname, 0, -1, loadedfile_nextbuf, lf); in Parse_include_file()