Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DPathMappingList.cpp40 PathMappingList::PathMappingList() : m_pairs() {} in PathMappingList() function in PathMappingList
42 PathMappingList::PathMappingList(ChangedCallback callback, void *callback_baton) in PathMappingList() function in PathMappingList
46 PathMappingList::PathMappingList(const PathMappingList &rhs) in PathMappingList() function in PathMappingList
50 const PathMappingList &PathMappingList::operator=(const PathMappingList &rhs) { in operator =()
60 PathMappingList::~PathMappingList() = default;
62 void PathMappingList::Append(ConstString path, in Append()
70 void PathMappingList::Append(const PathMappingList &rhs, bool notify) { in Append()
81 void PathMappingList::Insert(ConstString path, in Insert()
138 void PathMappingList::Clear(bool notify) { in Clear()
252 PathMappingList::const_iterator
[all …]
H A DTarget.cpp2189 PathMappingList &Target::GetImageSearchPathList() { in GetImageSearchPathList()
2193 void Target::ImageSearchPathsChanged(const PathMappingList &path_list, in ImageSearchPathsChanged()
4000 PathMappingList &TargetProperties::GetSourcePathMap() const { in GetSourcePathMap()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A 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);
H A DTarget.h130 PathMappingList &GetSourcePathMap() const;
1052 PathMappingList &GetImageSearchPathList();
1421 PathMappingList m_image_search_paths;
1444 static void ImageSearchPathsChanged(const PathMappingList &path_list,
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValuePathMappings.h45 PathMappingList &GetCurrentValue() { return m_path_mappings; } in GetCurrentValue()
47 const PathMappingList &GetCurrentValue() const { return m_path_mappings; } in GetCurrentValue()
50 PathMappingList m_path_mappings;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h818 PathMappingList &GetSourceMappingList() { return m_source_mappings; } in GetSourceMappingList()
820 const PathMappingList &GetSourceMappingList() const { in GetSourceMappingList()
974 PathMappingList m_source_mappings =
H A DModuleList.h51 PathMappingList m_symlink_paths;
63 PathMappingList GetSymlinkMappings() const;
H A DModuleSpec.h130 PathMappingList &GetSourceMappingList() const { return m_source_mappings; } in GetSourceMappingList()
276 mutable PathMappingList m_source_mappings;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h153 class PathMappingList; variable
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp130 PathMappingList ModuleListProperties::GetSymlinkMappings() const { in GetSymlinkMappings()
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile587 SRCS+= Target/PathMappingList.cpp
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp1141 const PathMappingList &list = target->GetImageSearchPathList(); in HandleArgumentCompletion()