Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
DSBInstructionList.cpp137 void SBInstructionList::Print(FileSP out_sp) { in Print() argument
138 LLDB_RECORD_METHOD(void, SBInstructionList, Print, (FileSP), out_sp); in Print()
139 if (!out_sp || !out_sp->IsValid()) in Print()
141 StreamFile stream(out_sp); in Print()
DSBInstruction.cpp270 void SBInstruction::Print(FileSP out_sp) { in Print() argument
271 LLDB_RECORD_METHOD(void, SBInstruction, Print, (FileSP), out_sp); in Print()
273 if (!out_sp || !out_sp->IsValid()) in Print()
284 StreamFile out_stream(out_sp); in Print()
DSBDebugger.cpp542 const SBEvent &event, FileSP out_sp, in HandleProcessEvent() argument
548 event, out_sp, err_sp); in HandleProcessEvent()
567 if (out_sp) in HandleProcessEvent()
568 out_sp->Write(stdio_buffer, len); in HandleProcessEvent()
587 process.ReportEventState(event, out_sp); in HandleProcessEvent()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp734 FileSP in_sp, FileSP out_sp, in EnterSession() argument
786 if (!in_sp || !out_sp || !err_sp || !*in_sp || !*out_sp || !*err_sp) in EnterSession()
799 if (!SetStdHandle(out_sp, "stdout", m_saved_stdout, "w")) { in EnterSession()