Home
last modified time | relevance | path

Searched refs:SetOneShot (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/lldb/bindings/interface/
DSBBreakpoint.i125 SetOneShot (bool one_shot);
306 …one_shot = property(IsOneShot, SetOneShot, doc='''A read/write property that configures whether th…
DSBBreakpointName.i53 void SetOneShot(bool one_shot);
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_breakpointname.py13 obj.SetOneShot(True)
/external/llvm-project/lldb/source/API/
DSBBreakpointName.cpp251 void SBBreakpointName::SetOneShot(bool one_shot) { in SetOneShot() function in SBBreakpointName
252 LLDB_RECORD_METHOD(void, SBBreakpointName, SetOneShot, (bool), one_shot); in SetOneShot()
261 bp_name->GetOptions().SetOneShot(one_shot); in SetOneShot()
722 LLDB_REGISTER_METHOD(void, SBBreakpointName, SetOneShot, (bool)); in RegisterMethods()
DSBBreakpoint.cpp231 void SBBreakpoint::SetOneShot(bool one_shot) { in SetOneShot() function in SBBreakpoint
232 LLDB_RECORD_METHOD(void, SBBreakpoint, SetOneShot, (bool), one_shot); in SetOneShot()
239 bkpt_sp->SetOneShot(one_shot); in SetOneShot()
1015 LLDB_REGISTER_METHOD(void, SBBreakpoint, SetOneShot, (bool)); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBBreakpointName.h52 void SetOneShot(bool one_shot);
DSBBreakpoint.h59 void SetOneShot(bool one_shot);
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointOptions.h293 void SetOneShot(bool one_shot) { in SetOneShot() function
DBreakpoint.h329 void SetOneShot(bool one_shot);
/external/llvm-project/lldb/test/API/functionalities/breakpoint/serialize/
DTestBreakpointSerialization.py229 bkpt.SetOneShot(True)
281 bkpt.SetOneShot(True)
/external/llvm-project/lldb/source/Breakpoint/
DBreakpoint.cpp345 void Breakpoint::SetOneShot(bool one_shot) { in SetOneShot() function in Breakpoint
346 m_options_up->SetOneShot(one_shot); in SetOneShot()
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_names/
DTestBreakpointNames.py219 bp_name.SetOneShot(self.is_one_shot)
/external/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDynamicLoaderPOSIXDYLD.cpp252 entry_break->SetOneShot(true); in ProbeEntry()
/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp3959 bp_sp->GetOptions()->SetOneShot(true); in WindowDelegateHandleChar()
3975 bp_sp->GetOptions()->SetOneShot(true); in WindowDelegateHandleChar()
/external/llvm-project/lldb/source/Commands/
DCommandObjectBreakpoint.cpp104 m_bp_opts.SetOneShot(value); in SetOptionValue()