Home
last modified time | relevance | path

Searched refs:m_modules (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DModuleList.cpp125 m_modules = rhs.m_modules; in ModuleList()
146 m_modules = rhs.m_modules; in operator =()
150 m_modules = rhs.m_modules; in operator =()
161 m_modules.push_back(module_sp); in AppendImpl()
228 m_modules.erase(pos); in RemoveImpl()
321 m_modules.clear(); in ClearImpl()
330 if (idx < m_modules.size()) in GetModulePointerAtIndexUnlocked()
331 return m_modules[idx].get(); in GetModulePointerAtIndexUnlocked()
342 if (idx < m_modules.size()) in GetModuleAtIndexUnlocked()
343 module_sp = m_modules[idx]; in GetModuleAtIndexUnlocked()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DModuleList.h573 collection m_modules; ///< The collection of modules. variable
582 ModuleIterable Modules() { return ModuleIterable(m_modules, GetMutex()); } in Modules()
587 return ModuleIterableNoLocking(m_modules); in ModulesNoLocking()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp366 m_func_regexp(), m_source_text_regexp(), m_modules(), m_load_addr(), in CommandOptions()
556 m_modules.AppendIfUnique(FileSpec(option_arg)); in SetOptionValue()
604 m_modules.Clear(); in OptionParsingStarting()
638 FileSpecList m_modules; member in CommandObjectBreakpointSet::CommandOptions
727 bp_sp = target->CreateBreakpoint(&(m_options.m_modules), in DoExecute()
744 size_t num_modules_specified = m_options.m_modules.GetSize(); in DoExecute()
747 m_options.m_modules.GetFileSpecPointerAtIndex(0); in DoExecute()
769 bp_sp = target->CreateBreakpoint(&(m_options.m_modules), in DoExecute()
794 bp_sp = target->CreateFuncRegexBreakpoint(&(m_options.m_modules), in DoExecute()
830 target->CreateSourceRegexBreakpoint(&(m_options.m_modules), in DoExecute()
[all …]