Lines Matching defs:path
167 os << "-o " << quote(path::filename(arg->getValue())) << "\n";
171 for (StringRef path : args::getLines(*buffer))
172 os << quote(rewriteInputPath(path)) << "\n";
202 static void searchedDylib(const Twine &path, bool found) {
204 message("searched " + path + (found ? ", found " : ", not found"));
206 depTracker->logFileNotFound(path);
213 path::replace_extension(tbdPath, ".tbd");
232 CachedHashStringRef path(mbref.getBufferIdentifier());
233 DylibFile *&file = loadedDylibs[path];
290 sys::path::filename(newFile->installName) + "' because " +
305 path::append(base, name);
317 StringRef macho::rerootPath(StringRef path) {
318 if (!path::is_absolute(path, path::Style::posix) || path.ends_with(".o"))
319 return path;
322 findPathCombination(path, config->systemLibraryRoots))
325 return path;
328 uint32_t macho::getModTime(StringRef path) {
333 if (!fs::status(path, stat))
337 warn("failed to get modification time of " + path);
348 macho::DependencyTracker::DependencyTracker(StringRef path)
349 : path(path), active(!path.empty()) {
350 if (active && fs::exists(path) && !fs::can_write(path)) {
351 warn("Ignoring dependency_info option since specified path is not "
364 raw_fd_ostream os(path, ec, fs::OF_None);
370 auto addDep = [&os](DepOpCode opcode, const StringRef &path) {
376 os << path;