Home
last modified time | relevance | path

Searched refs:fullPath (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachOLinkingContext.cpp534 SmallString<256> fullPath; in searchDirForLibrary() local
537 fullPath.assign(path); in searchDirForLibrary()
539 if (fileExists(fullPath)) in searchDirForLibrary()
545 fullPath.assign(path); in searchDirForLibrary()
547 if (fileExists(fullPath)) in searchDirForLibrary()
551 fullPath.assign(path); in searchDirForLibrary()
553 if (fileExists(fullPath)) in searchDirForLibrary()
573 SmallString<256> fullPath; in findPathForFramework() local
575 fullPath.assign(dir); in findPathForFramework()
577 if (fileExists(fullPath)) in findPathForFramework()
[all …]
H A DMachONormalizedFileFromAtoms.cpp889 char *fullPath = nullptr; in synthesizeDebugNotes() local
894 fullPath = file.ownedAllocations.Allocate<char>(pathBuf.size() + 1); in synthesizeDebugNotes()
895 memcpy(fullPath, pathBuf.c_str(), pathBuf.size() + 1); in synthesizeDebugNotes()
901 if (!llvm::sys::fs::status(fullPath, stat)) in synthesizeDebugNotes()
906 modTime, fullPath)); in synthesizeDebugNotes()
/freebsd-12.1/contrib/llvm/tools/lld/lib/Driver/
H A DDarwinLdDriver.cpp273 SmallString<256> fullPath; in loadFileList() local
274 fullPath.assign(dirName); in loadFileList()
275 llvm::sys::path::append(fullPath, Twine(line)); in loadFileList()
276 path = ctx.copy(fullPath.str()); in loadFileList()