Home
last modified time | relevance | path

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

/freebsd-14.2/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;
71 void PathMappingList::Append(const PathMappingList &rhs, bool notify) { in Append()
156 llvm::json::Value PathMappingList::ToJSON() { in ToJSON()
167 void PathMappingList::Clear(bool notify) { in Clear()
176 bool PathMappingList::RemapPath(ConstString path, in RemapPath()
292 PathMappingList::const_iterator
[all …]
H A DTarget.cpp2406 PathMappingList &Target::GetImageSearchPathList() { in GetImageSearchPathList()
2410 void Target::ImageSearchPathsChanged(const PathMappingList &path_list, in ImageSearchPathsChanged()
4473 PathMappingList &TargetProperties::GetSourcePathMap() const { in GetSourcePathMap()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DPathMappingList.h22 class PathMappingList {
24 typedef void (*ChangedCallback)(const PathMappingList &path_list,
28 PathMappingList();
30 PathMappingList(ChangedCallback callback, void *callback_baton);
32 PathMappingList(const PathMappingList &rhs);
34 ~PathMappingList();
36 const PathMappingList &operator=(const PathMappingList &rhs);
40 void Append(const PathMappingList &rhs, bool notify);
H A DTarget.h142 PathMappingList &GetSourcePathMap() const;
1143 PathMappingList &GetImageSearchPathList();
1557 PathMappingList m_image_search_paths;
1584 static void ImageSearchPathsChanged(const PathMappingList &path_list,
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h827 PathMappingList &GetSourceMappingList() { return m_source_mappings; } in GetSourceMappingList()
829 const PathMappingList &GetSourceMappingList() const { in GetSourceMappingList()
1038 PathMappingList m_source_mappings =
H A DModuleList.h52 PathMappingList m_symlink_paths;
74 PathMappingList GetSymlinkMappings() const;
H A DModuleSpec.h125 PathMappingList &GetSourceMappingList() const { return m_source_mappings; } in GetSourceMappingList()
271 mutable PathMappingList m_source_mappings;
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h160 class PathMappingList; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp175 PathMappingList ModuleListProperties::GetSymlinkMappings() const { in GetSymlinkMappings()
/freebsd-14.2/lib/clang/liblldb/
H A DMakefile628 SRCS+= Target/PathMappingList.cpp
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp1168 const PathMappingList &list = target->GetImageSearchPathList(); in HandleArgumentCompletion()