Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Target/
DPathMappingList.cpp40 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 …]
DCMakeLists.txt24 PathMappingList.cpp
DTarget.cpp2170 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/
DPathMappingList.h19 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);
DTarget.h126 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/
DPathMappingListTest.cpp25 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/
DOptionValuePathMappings.h49 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/
DModule.h818 PathMappingList &GetSourceMappingList() { return m_source_mappings; } in GetSourceMappingList()
820 const PathMappingList &GetSourceMappingList() const { in GetSourceMappingList()
980 PathMappingList m_source_mappings =
DModuleList.h51 PathMappingList m_symlink_paths;
63 PathMappingList GetSymlinkMappings() const;
DModuleSpec.h131 PathMappingList &GetSourceMappingList() const { return m_source_mappings; } in GetSourceMappingList()
277 mutable PathMappingList m_source_mappings;
/external/llvm-project/lldb/include/lldb/
Dlldb-forward.h153 class PathMappingList; variable
/external/llvm-project/lldb/source/Core/
DModuleList.cpp129 PathMappingList ModuleListProperties::GetSymlinkMappings() const { in GetSymlinkMappings()
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp1170 const PathMappingList &list = target->GetImageSearchPathList(); in HandleArgumentCompletion()