Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachOLinkingContext.cpp533 SmallString<256> fullPath; in searchDirForLibrary() local
536 fullPath.assign(path); in searchDirForLibrary()
538 if (fileExists(fullPath)) in searchDirForLibrary()
544 fullPath.assign(path); in searchDirForLibrary()
546 if (fileExists(fullPath)) in searchDirForLibrary()
550 fullPath.assign(path); in searchDirForLibrary()
552 if (fileExists(fullPath)) in searchDirForLibrary()
556 fullPath.assign(path); in searchDirForLibrary()
558 if (fileExists(fullPath)) in searchDirForLibrary()
578 SmallString<256> fullPath; in findPathForFramework() local
[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-13.1/contrib/llvm-project/lld/lib/Driver/
H A DDarwinLdDriver.cpp272 SmallString<256> fullPath; in loadFileList() local
273 fullPath.assign(dirName); in loadFileList()
274 llvm::sys::path::append(fullPath, Twine(line)); in loadFileList()
275 path = ctx.copy(fullPath.str()); in loadFileList()