Home
last modified time | relevance | path

Searched refs:PathMappingList (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Target/
H A DPathMappingList.cpp41 PathMappingList::PathMappingList() : m_pairs() {} in PathMappingList() function in PathMappingList
43 PathMappingList::PathMappingList(ChangedCallback callback, void *callback_baton) in PathMappingList() function in PathMappingList
46 PathMappingList::PathMappingList(const PathMappingList &rhs) in PathMappingList() function in PathMappingList
49 const PathMappingList &PathMappingList::operator=(const PathMappingList &rhs) { in operator =()
59 PathMappingList::~PathMappingList() = default;
61 void PathMappingList::Append(llvm::StringRef path, llvm::StringRef replacement, in Append()
69 void PathMappingList::Append(const PathMappingList &rhs, bool notify) { in Append()
80 bool PathMappingList::AppendUnique(llvm::StringRef path, in AppendUnique()
93 void PathMappingList::Insert(llvm::StringRef path, llvm::StringRef replacement, in Insert()
107 bool PathMappingList::Replace(llvm::StringRef path, llvm::StringRef replacement, in Replace()
[all …]
H A DCMakeLists.txt26 PathMappingList.cpp
H A DTarget.cpp2321 PathMappingList &Target::GetImageSearchPathList() { in GetImageSearchPathList()
2325 void Target::ImageSearchPathsChanged(const PathMappingList &path_list, in ImageSearchPathsChanged()
4358 PathMappingList &TargetProperties::GetSourcePathMap() const { in GetSourcePathMap()
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DPathMappingList.h21 class PathMappingList {
23 typedef void (*ChangedCallback)(const PathMappingList &path_list,
27 PathMappingList();
29 PathMappingList(ChangedCallback callback, void *callback_baton);
31 PathMappingList(const PathMappingList &rhs);
33 ~PathMappingList();
35 const PathMappingList &operator=(const PathMappingList &rhs);
39 void Append(const PathMappingList &rhs, bool notify);
H A DTarget.h142 PathMappingList &GetSourcePathMap() const;
1119 PathMappingList &GetImageSearchPathList();
1526 PathMappingList m_image_search_paths;
1553 static void ImageSearchPathsChanged(const PathMappingList &path_list,
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptionValuePathMappings.h47 PathMappingList &GetCurrentValue() { return m_path_mappings; } in GetCurrentValue()
49 const PathMappingList &GetCurrentValue() const { return m_path_mappings; } in GetCurrentValue()
52 PathMappingList m_path_mappings;
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DModuleList.h52 PathMappingList m_symlink_paths;
74 PathMappingList GetSymlinkMappings() const;
H A DModule.h873 PathMappingList &GetSourceMappingList() { return m_source_mappings; } in GetSourceMappingList()
875 const PathMappingList &GetSourceMappingList() const { in GetSourceMappingList()
1084 PathMappingList m_source_mappings =
H A DModuleSpec.h125 PathMappingList &GetSourceMappingList() const { return m_source_mappings; } in GetSourceMappingList()
271 mutable PathMappingList m_source_mappings;
/openbsd-src/gnu/usr.bin/clang/liblldbTarget/
H A DMakefile25 PathMappingList.cpp \
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Target/
H A DBUILD.gn49 "PathMappingList.cpp",
/openbsd-src/gnu/llvm/lldb/include/lldb/
H A Dlldb-forward.h159 class PathMappingList; variable
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DModuleList.cpp184 PathMappingList ModuleListProperties::GetSymlinkMappings() const { in GetSymlinkMappings()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectTarget.cpp1148 const PathMappingList &list = target->GetImageSearchPathList(); in HandleArgumentCompletion()