Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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;
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBProcess.i98 ReportEventState (const lldb::SBEvent &event, SBFile out) const;
101 ReportEventState (const lldb::SBEvent &event, FileSP BORROWED) const;
/openbsd-src/gnu/llvm/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.cpp659 process.ReportEventState(event, out_sp); in HandleProcessEvent()