Searched refs:RPath (Results 1 – 8 of 8) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObjcopy.cpp | 162 StringRef RPath = getPayloadString(LC); in processLoadCommands() local 163 if (RPathsToRemove.count(RPath)) { in processLoadCommands() 164 RPathsToRemove.erase(RPath); in processLoadCommands() 176 for (StringRef RPath : MachOConfig.RPathsToRemove) { in processLoadCommands() local 177 if (RPathsToRemove.count(RPath)) in processLoadCommands() 180 RPath.str().c_str()); in processLoadCommands() 214 StringRef RPath = getPayloadString(LC); in processLoadCommands() local 215 StringRef NewRPath = MachOConfig.RPathsToUpdate.lookup(RPath); in processLoadCommands() 236 for (StringRef RPath : MachOConfig.RPathToAdd) { in processLoadCommands() local 237 if (RPaths.contains(RPath)) in processLoadCommands() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | FileCollector.cpp | 201 sys::fs::create_directories(sys::path::parent_path(entry.RPath), in copyFiles() 210 sys::fs::create_directories(entry.RPath, in copyFiles() 219 if (std::error_code EC = sys::fs::copy_file(entry.VPath, entry.RPath)) { in copyFiles() 226 if (std::error_code EC = sys::fs::setPermissions(entry.RPath, *perms)) { in copyFiles() 233 copyAccessAndModificationTime(entry.RPath, Stat); in copyFiles()
|
| H A D | VirtualFileSystem.cpp | 2654 void writeEntry(StringRef VPath, StringRef RPath); 2706 void JSONWriter::writeEntry(StringRef VPath, StringRef RPath) { in writeEntry() argument 2712 << llvm::yaml::escape(RPath) << "\"\n"; in writeEntry() 2746 StringRef RPath = Entry.RPath; in write() local 2749 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write() 2751 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write() 2756 writeEntry(path::filename(Entry.VPath), RPath); in write() 2780 StringRef RPath = Entry.RPath; in write() local 2783 assert(RPath.substr(0, OverlayDirLen) == OverlayDir && in write() 2785 RPath = RPath.slice(OverlayDirLen, RPath.size()); in write() [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Frontend/ |
| H A D | Utils.h | 152 virtual void addFileMapping(StringRef VPath, StringRef RPath) { in addFileMapping() argument 153 VFSWriter.addFileMapping(VPath, RPath); in addFileMapping()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ModuleDependencyCollector.h | 32 void addFileMapping(llvm::StringRef VPath, llvm::StringRef RPath) override {} in addFileMapping() argument
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objcopy/ |
| H A D | ObjcopyOptions.cpp | 1066 StringRef RPath = Arg->getValue(); in parseInstallNameToolOptions() local 1069 if (is_contained(MachOConfig.RPathToAdd, RPath)) in parseInstallNameToolOptions() 1073 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions() 1074 if (is_contained(MachOConfig.RPathToPrepend, RPath)) in parseInstallNameToolOptions() 1078 RPath.str().c_str(), RPath.str().c_str()); in parseInstallNameToolOptions() 1080 MachOConfig.RPathsToRemove.insert(RPath); in parseInstallNameToolOptions() 1087 auto Match = [=](StringRef RPath) { return RPath == Old || RPath == New; }; in parseInstallNameToolOptions() argument
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | VirtualFileSystem.h | 626 YAMLVFSEntry(T1 &&VPath, T2 &&RPath, bool IsDirectory = false) 627 : VPath(std::forward<T1>(VPath)), RPath(std::forward<T2>(RPath)), in VPath() 630 std::string RPath; member
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | CompilerInstance.cpp | 281 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()
|