Lines Matching defs:fullName
679 char *fullName = isDot
682 Lst_Append(expansions, fullName);
1348 char *fullName;
1354 fullName = Dir_FindFile(base, Suff_FindPath(gn));
1355 if (fullName == NULL)
1365 gn->path = bmake_strdup(fullName);
1370 makeDependfile, gn->name, fullName);
1372 return fullName;
1378 char *fullName;
1380 fullName = gn->path;
1381 if (fullName == NULL && !(gn->type & OP_NOPATH)) {
1383 fullName = Dir_FindFile(gn->name, Suff_FindPath(gn));
1385 if (fullName == NULL && gn->flags.fromDepend &&
1387 fullName = ResolveMovedDepends(gn);
1390 gn->name, fullName != NULL ? fullName : "(not found)");
1393 if (fullName == NULL)
1394 fullName = bmake_strdup(gn->name);
1398 return fullName;
1410 char *fullName;
1423 fullName = ResolveFullName(gn);
1425 if (cached_stats(fullName, &cst, false, forceRefresh) < 0) {
1427 if (fullName != gn->path)
1428 free(fullName);
1436 if (fullName != NULL && gn->path == NULL)
1437 gn->path = fullName;
1438 /* XXX: else free(fullName)? */