Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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 =()
60 PathMappingList::~PathMappingList() = default;
62 void PathMappingList::Append(llvm::StringRef path, llvm::StringRef replacement, in Append()
71 void PathMappingList::Append(const PathMappingList &rhs, bool notify) { in Append()
83 bool PathMappingList::AppendUnique(llvm::StringRef path, in AppendUnique()
97 void PathMappingList::Insert(llvm::StringRef path, llvm::StringRef replacement, in Insert()
112 bool PathMappingList::Replace(llvm::StringRef path, llvm::StringRef replacement, in Replace()
[all …]
H A DTarget.cpp2401 PathMappingList &Target::GetImageSearchPathList() { in GetImageSearchPathList()
2405 void Target::ImageSearchPathsChanged(const PathMappingList &path_list, in ImageSearchPathsChanged()
4454 PathMappingList &TargetProperties::GetSourcePathMap() const { in GetSourcePathMap()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DPathMappingList.h23 class PathMappingList {
25 typedef void (*ChangedCallback)(const PathMappingList &path_list,
29 PathMappingList();
31 PathMappingList(ChangedCallback callback, void *callback_baton);
33 PathMappingList(const PathMappingList &rhs);
35 ~PathMappingList();
37 const PathMappingList &operator=(const PathMappingList &rhs);
41 void Append(const PathMappingList &rhs, bool notify);
H A DTarget.h142 PathMappingList &GetSourcePathMap() const;
1156 PathMappingList &GetImageSearchPathList();
1570 PathMappingList m_image_search_paths;
1597 static void ImageSearchPathsChanged(const PathMappingList &path_list,
/freebsd/contrib/llvm-project/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;
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h18 #include "lldb/Target/PathMappingList.h"
827 PathMappingList &GetSourceMappingList() { return m_source_mappings; }
829 const PathMappingList &GetSourceMappingList() const { in LogMessage()
1038 PathMappingList m_source_mappings =
H A DModuleList.h72 PathMappingList m_symlink_paths;
95 PathMappingList GetSymlinkMappings() const;
H A DModuleSpec.h125 PathMappingList &GetSourceMappingList() const { return m_source_mappings; } in GetSourceMappingList()
271 mutable PathMappingList m_source_mappings;
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h162 class PathMappingList; variable
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp180 PathMappingList ModuleListProperties::GetSymlinkMappings() const { in GetSymlinkMappings()
/freebsd/lib/clang/liblldb/
H A DMakefile641 SRCS+= Target/PathMappingList.cpp
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp1137 const PathMappingList &list = target->GetImageSearchPathList(); in HandleArgumentCompletion()