Searched refs:ReportEventState (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/lldb/include/lldb/API/ |
D | SBProcess.h | 68 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;
|
/external/llvm-project/lldb/source/API/ |
D | SBProcess.cpp | 335 void SBProcess::ReportEventState(const SBEvent &event, SBFile out) const { in ReportEventState() function in SBProcess 336 LLDB_RECORD_METHOD_CONST(void, SBProcess, ReportEventState, in ReportEventState() 339 return ReportEventState(event, out.m_opaque_sp); in ReportEventState() 342 void SBProcess::ReportEventState(const SBEvent &event, FILE *out) const { in ReportEventState() function in SBProcess 343 LLDB_RECORD_METHOD_CONST(void, SBProcess, ReportEventState, in ReportEventState() 346 return ReportEventState(event, outfile); in ReportEventState() 349 void SBProcess::ReportEventState(const SBEvent &event, FileSP out) const { in ReportEventState() function in SBProcess 351 LLDB_RECORD_METHOD_CONST(void, SBProcess, ReportEventState, in ReportEventState() 1343 LLDB_REGISTER_METHOD_CONST(void, SBProcess, ReportEventState, in RegisterMethods() 1345 LLDB_REGISTER_METHOD_CONST(void, SBProcess, ReportEventState, in RegisterMethods() [all …]
|
D | SBDebugger.cpp | 587 process.ReportEventState(event, out_sp); in HandleProcessEvent()
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_process.py | 16 obj.ReportEventState(event, None)
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBProcess.i | 100 ReportEventState (const lldb::SBEvent &event, SBFile out) const; 103 ReportEventState (const lldb::SBEvent &event, FileSP BORROWED) const;
|