Home
last modified time | relevance | path

Searched refs:SBCommunication (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBCommunication.cpp19 SBCommunication::SBCommunication() : m_opaque(nullptr), m_opaque_owned(false) { in SBCommunication() function in SBCommunication
20 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBCommunication); in SBCommunication()
23 SBCommunication::SBCommunication(const char *broadcaster_name) in SBCommunication() function in SBCommunication
25 LLDB_RECORD_CONSTRUCTOR(SBCommunication, (const char *), broadcaster_name); in SBCommunication()
28 SBCommunication::~SBCommunication() { in ~SBCommunication()
35 bool SBCommunication::IsValid() const { in IsValid()
36 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBCommunication, IsValid); in IsValid()
39 SBCommunication::operator bool() const { in operator bool()
40 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBCommunication, operator bool); in operator bool()
45 bool SBCommunication::GetCloseOnEOF() { in GetCloseOnEOF()
[all …]
DCMakeLists.txt34 SBCommunication.cpp
DSBReproducer.cpp73 RegisterMethods<SBCommunication>(R); in SBRegistry()
/external/llvm-project/lldb/include/lldb/API/
DSBCommunication.h17 class LLDB_API SBCommunication {
36 SBCommunication();
37 SBCommunication(const char *broadcaster_name);
38 ~SBCommunication();
75 SBCommunication(const SBCommunication &) = delete;
76 const SBCommunication &operator=(const SBCommunication &) = delete;
DSBBroadcaster.h65 friend class SBCommunication; variable
DSBError.h60 friend class SBCommunication; variable
DSBDefines.h34 class LLDB_API SBCommunication; variable
/external/llvm-project/lldb/bindings/interface/
DSBCommunication.i11 class SBCommunication
25 SBCommunication ();
26 SBCommunication (const char * broadcaster_name);
27 ~SBCommunication ();
/external/llvm-project/lldb/tools/lldb-vscode/
DVSCodeForward.h26 class SBCommunication; variable
/external/llvm-project/lldb/bindings/
Dheaders.swig20 #include "lldb/API/SBCommunication.h"
Dinterfaces.swig27 %include "./interface/SBCommunication.i"
/external/llvm-project/lldb/test/API/python_api/default-constructor/
DTestDefaultConstructorForAPIObjects.py98 obj = lldb.SBCommunication()