Home
last modified time | relevance | path

Searched refs:SetCloseOnEOF (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBCommunication.cpp53 void SBCommunication::SetCloseOnEOF(bool b) { in SetCloseOnEOF() function in SBCommunication
54 LLDB_RECORD_METHOD(void, SBCommunication, SetCloseOnEOF, (bool), b); in SetCloseOnEOF()
57 m_opaque->SetCloseOnEOF(b); in SetCloseOnEOF()
198 LLDB_REGISTER_METHOD(void, SBCommunication, SetCloseOnEOF, (bool)); in RegisterMethods()
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_communication.py21 obj.SetCloseOnEOF(True)
22 obj.SetCloseOnEOF(False)
/external/llvm-project/lldb/unittests/Core/
DCommunicationTest.cpp27 comm.SetCloseOnEOF(true); in TEST()
/external/llvm-project/lldb/bindings/interface/
DSBCommunication.i56 SetCloseOnEOF (bool b);
/external/llvm-project/lldb/include/lldb/API/
DSBCommunication.h58 void SetCloseOnEOF(bool b);
/external/llvm-project/lldb/include/lldb/Core/
DCommunication.h292 void SetCloseOnEOF(bool b) { m_close_on_eof = b; } in SetCloseOnEOF() function
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServerLLGS.cpp1026 m_stdio_communication.SetCloseOnEOF(false); in SetSTDIOFileDescriptor()