Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Breakpoint/
DBreakpoint.cpp58 Breakpoint::Breakpoint(Target &new_target, const Breakpoint &source_bp) in Breakpoint() argument
59 : m_being_created(true), m_hardware(source_bp.m_hardware), in Breakpoint()
60 m_target(new_target), m_name_list(source_bp.m_name_list), in Breakpoint()
61 m_options_up(new BreakpointOptions(*source_bp.m_options_up)), in Breakpoint()
63 m_resolve_indirect_symbols(source_bp.m_resolve_indirect_symbols), in Breakpoint()
/external/llvm-project/lldb/test/API/functionalities/breakpoint/serialize/
DTestBreakpointSerialization.py139 source_bp = source_bps.GetBreakpointAtIndex(i)
141 source_bp.GetDescription(source_desc, False)
148 copy_id = source_bp.GetID()
/external/llvm-project/lldb/tools/lldb-vscode/
Dlldb-vscode.cpp434 llvm::json::Value source_bp = CreateBreakpoint(bp); in EventThreadFunction() local
435 source_bp.getAsObject()->erase("source"); in EventThreadFunction()
437 body.try_emplace("breakpoint", source_bp); in EventThreadFunction()