Searched refs:PathMappingList (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | PathMappingList.cpp | 41 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 D | Target.cpp | 2401 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 D | PathMappingList.h | 23 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 D | Target.h | 142 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 D | OptionValuePathMappings.h | 47 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 D | Module.h | 18 #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 D | ModuleList.h | 72 PathMappingList m_symlink_paths; 95 PathMappingList GetSymlinkMappings() const;
|
H A D | ModuleSpec.h | 125 PathMappingList &GetSourceMappingList() const { return m_source_mappings; } in GetSourceMappingList() 271 mutable PathMappingList m_source_mappings;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/ |
H A D | lldb-forward.h | 162 class PathMappingList; variable
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ModuleList.cpp | 180 PathMappingList ModuleListProperties::GetSymlinkMappings() const { in GetSymlinkMappings()
|
/freebsd/lib/clang/liblldb/ |
H A D | Makefile | 641 SRCS+= Target/PathMappingList.cpp
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectTarget.cpp | 1137 const PathMappingList &list = target->GetImageSearchPathList(); in HandleArgumentCompletion()
|