Home
last modified time | relevance | path

Searched refs:ReportEventState (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBProcess.h68 void ReportEventState(const lldb::SBEvent &event, FILE *out) const;
70 void ReportEventState(const lldb::SBEvent &event, SBFile file) const;
72 void ReportEventState(const lldb::SBEvent &event, FileSP file) const;
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_process.py16 obj.ReportEventState(event, None)
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBProcess.i98 ReportEventState (const lldb::SBEvent &event, SBFile out) const;
101 ReportEventState (const lldb::SBEvent &event, FileSP BORROWED) const;
/llvm-project-15.0.7/lldb/source/API/
H A DSBProcess.cpp299 void SBProcess::ReportEventState(const SBEvent &event, SBFile out) const { in ReportEventState() function in SBProcess
302 return ReportEventState(event, out.m_opaque_sp); in ReportEventState()
305 void SBProcess::ReportEventState(const SBEvent &event, FILE *out) const { in ReportEventState() function in SBProcess
308 return ReportEventState(event, outfile); in ReportEventState()
311 void SBProcess::ReportEventState(const SBEvent &event, FileSP out) const { in ReportEventState() function in SBProcess
H A DSBDebugger.cpp621 process.ReportEventState(event, out_sp); in HandleProcessEvent()