Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/serialize/
H A DTestBreakpointSerialization.py131 source_bp = source_bps.GetBreakpointAtIndex(i)
133 source_bp.GetDescription(source_desc, False)
140 copy_id = source_bp.GetID()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpoint.cpp59 Breakpoint::Breakpoint(Target &new_target, const Breakpoint &source_bp) in Breakpoint() argument
60 : m_being_created(true), m_hardware(source_bp.m_hardware), in Breakpoint()
61 m_target(new_target), m_name_list(source_bp.m_name_list), in Breakpoint()
62 m_options(source_bp.m_options), m_locations(*this), in Breakpoint()
63 m_resolve_indirect_symbols(source_bp.m_resolve_indirect_symbols), in Breakpoint()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A Dlldb-vscode.cpp497 llvm::json::Value source_bp = CreateBreakpoint(bp); in EventThreadFunction() local
498 source_bp.getAsObject()->erase("source"); in EventThreadFunction()
500 body.try_emplace("breakpoint", source_bp); in EventThreadFunction()