Home
last modified time | relevance | path

Searched refs:RealPath (Results 1 – 11 of 11) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h43 SmallString<256> RealPath; in resolve() local
44 sys::fs::real_path(ParentPath, RealPath); in resolve()
46 {ParentPath, std::string(RealPath.c_str(), RealPath.size())}); in resolve()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileCollector.h117 void addFileToMapping(StringRef VirtualPath, StringRef RealPath) { in addFileToMapping() argument
119 VFSWriter.addDirectoryMapping(VirtualPath, RealPath); in addFileToMapping()
121 VFSWriter.addFileMapping(VirtualPath, RealPath); in addFileToMapping()
H A DVirtualFileSystem.h879 void addEntry(StringRef VirtualPath, StringRef RealPath, bool IsDirectory);
884 void addFileMapping(StringRef VirtualPath, StringRef RealPath);
885 void addDirectoryMapping(StringRef VirtualPath, StringRef RealPath);
H A DFileSystem.h1124 SmallVectorImpl<char> *RealPath = nullptr);
1140 SmallVectorImpl<char> *RealPath = nullptr);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp65 SmallString<256> RealPath; in updateWithRealPath() local
70 if (sys::fs::real_path(Directory, RealPath)) in updateWithRealPath()
72 CachedDirs[Directory] = std::string(RealPath.str()); in updateWithRealPath()
74 RealPath = DirWithSymlink->second; in updateWithRealPath()
82 sys::path::append(RealPath, Filename); in updateWithRealPath()
85 Path.swap(RealPath); in updateWithRealPath()
H A DVirtualFileSystem.cpp2150 void YAMLVFSWriter::addEntry(StringRef VirtualPath, StringRef RealPath, in addEntry() argument
2153 assert(sys::path::is_absolute(RealPath) && "real path not absolute"); in addEntry()
2155 Mappings.emplace_back(VirtualPath, RealPath, IsDirectory); in addEntry()
2158 void YAMLVFSWriter::addFileMapping(StringRef VirtualPath, StringRef RealPath) { in addFileMapping() argument
2159 addEntry(VirtualPath, RealPath, /*IsDirectory=*/false); in addFileMapping()
2163 StringRef RealPath) { in addDirectoryMapping() argument
2164 addEntry(VirtualPath, RealPath, /*IsDirectory=*/true); in addDirectoryMapping()
/freebsd-13.1/contrib/llvm-project/clang/lib/DirectoryWatcher/mac/
H A DDirectoryWatcher-mac.cpp179 std::string RealPath; in createFSEventStream() local
185 RealPath = Buffer; in createFSEventStream()
187 RealPath = Path.str(); in createFSEventStream()
192 Context.info = new EventStreamContextData(std::move(RealPath), Receiver); in createFSEventStream()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc369 SmallVectorImpl<char> &RealPath) {
370 RealPath.clear();
391 return UTF16ToUTF8(Data, CountChars, RealPath);
1206 SmallVectorImpl<char> &RealPath) {
1213 EC = realPathFromHandle(File, RealPath);
1220 SmallVectorImpl<char> *RealPath) {
1221 Expected<HANDLE> NativeFile = openNativeFileForRead(Name, Flags, RealPath);
1226 SmallVectorImpl<char> *RealPath) {
1231 if (Result && RealPath)
1232 realPathFromHandle(*Result, *RealPath);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc1102 SmallVectorImpl<char> *RealPath) {
1109 if(!RealPath)
1111 RealPath->clear();
1117 RealPath->append(Buffer, Buffer + strlen(Buffer));
1125 RealPath->append(Buffer, Buffer + CharCount);
1132 RealPath->append(Buffer, Buffer + strlen(Buffer));
1139 SmallVectorImpl<char> *RealPath) {
1141 std::error_code EC = openFileForRead(Name, ResultFD, Flags, RealPath);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp535 SmallString<256> RealPath; in isFunctionInstrumented() local
541 if (sys::fs::real_path(Filename, RealPath)) { in isFunctionInstrumented()
545 RealFilename = RealPath; in isFunctionInstrumented()
/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp2557 SmallString<256> RealPath; in addDeviceDepences() local
2558 llvm::sys::fs::real_path(IA->getInputArg().getValue(), RealPath, in addDeviceDepences()
2560 Hasher.update(RealPath); in addDeviceDepences()