Searched refs:PathMappingList (Results 1 – 13 of 13) sorted by relevance
/external/llvm-project/lldb/source/Target/ |
D | PathMappingList.cpp | 40 PathMappingList::PathMappingList() in PathMappingList() function in PathMappingList 43 PathMappingList::PathMappingList(ChangedCallback callback, void *callback_baton) in PathMappingList() function in PathMappingList 47 PathMappingList::PathMappingList(const PathMappingList &rhs) in PathMappingList() function in PathMappingList 51 const PathMappingList &PathMappingList::operator=(const PathMappingList &rhs) { in operator =() 61 PathMappingList::~PathMappingList() = default; 63 void PathMappingList::Append(ConstString path, in Append() 71 void PathMappingList::Append(const PathMappingList &rhs, bool notify) { in Append() 82 void PathMappingList::Insert(ConstString path, in Insert() 97 bool PathMappingList::Replace(ConstString path, in Replace() 109 bool PathMappingList::Remove(size_t index, bool notify) { in Remove() [all …]
|
D | CMakeLists.txt | 24 PathMappingList.cpp
|
D | Target.cpp | 2170 PathMappingList &Target::GetImageSearchPathList() { in GetImageSearchPathList() 2174 void Target::ImageSearchPathsChanged(const PathMappingList &path_list, in ImageSearchPathsChanged() 3921 PathMappingList &TargetProperties::GetSourcePathMap() const { in GetSourcePathMap()
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | PathMappingList.h | 19 class PathMappingList { 21 typedef void (*ChangedCallback)(const PathMappingList &path_list, 25 PathMappingList(); 27 PathMappingList(ChangedCallback callback, void *callback_baton); 29 PathMappingList(const PathMappingList &rhs); 31 ~PathMappingList(); 33 const PathMappingList &operator=(const PathMappingList &rhs); 38 void Append(const PathMappingList &rhs, bool notify);
|
D | Target.h | 126 PathMappingList &GetSourcePathMap() const; 1042 PathMappingList &GetImageSearchPathList(); 1401 PathMappingList m_image_search_paths; 1424 static void ImageSearchPathsChanged(const PathMappingList &path_list,
|
/external/llvm-project/lldb/unittests/Target/ |
D | PathMappingListTest.cpp | 25 static void TestPathMappings(const PathMappingList &map, in TestPathMappings() 66 PathMappingList map; in TEST() 69 PathMappingList map2; in TEST() 75 PathMappingList map; in TEST() 97 PathMappingList map; in TEST()
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | OptionValuePathMappings.h | 49 PathMappingList &GetCurrentValue() { return m_path_mappings; } in GetCurrentValue() 51 const PathMappingList &GetCurrentValue() const { return m_path_mappings; } in GetCurrentValue() 54 PathMappingList m_path_mappings;
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | Module.h | 818 PathMappingList &GetSourceMappingList() { return m_source_mappings; } in GetSourceMappingList() 820 const PathMappingList &GetSourceMappingList() const { in GetSourceMappingList() 980 PathMappingList m_source_mappings =
|
D | ModuleList.h | 51 PathMappingList m_symlink_paths; 63 PathMappingList GetSymlinkMappings() const;
|
D | ModuleSpec.h | 131 PathMappingList &GetSourceMappingList() const { return m_source_mappings; } in GetSourceMappingList() 277 mutable PathMappingList m_source_mappings;
|
/external/llvm-project/lldb/include/lldb/ |
D | lldb-forward.h | 153 class PathMappingList; variable
|
/external/llvm-project/lldb/source/Core/ |
D | ModuleList.cpp | 129 PathMappingList ModuleListProperties::GetSymlinkMappings() const { in GetSymlinkMappings()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectTarget.cpp | 1170 const PathMappingList &list = target->GetImageSearchPathList(); in HandleArgumentCompletion()
|