Searched refs:MainLoopBase (Results 1 – 10 of 10) sorted by relevance
/external/llvm-project/lldb/include/lldb/Host/ |
D | MainLoopBase.h | 31 class MainLoopBase { 36 MainLoopBase() {} in MainLoopBase() function 37 virtual ~MainLoopBase() {} in ~MainLoopBase() 41 typedef std::function<void(MainLoopBase &)> Callback; 71 ReadHandle(MainLoopBase &mainloop, IOObject::WaitableHandle handle) in ReadHandle() 74 MainLoopBase &m_mainloop; 77 friend class MainLoopBase; variable 82 MainLoopBase(const MainLoopBase &) = delete; 83 const MainLoopBase &operator=(const MainLoopBase &) = delete;
|
D | MainLoop.h | 37 class MainLoop : public MainLoopBase {
|
/external/llvm-project/lldb/include/lldb/ |
D | module.modulemap | 37 module MainLoopBase { header "Host/MainLoopBase.h" export * }
|
/external/llvm-project/lldb/source/Host/common/ |
D | TCPSocket.cpp | 265 std::vector<MainLoopBase::ReadHandleUP> handles; in Accept() 272 &listen_sock](MainLoopBase &loop) { in Accept()
|
/external/llvm-project/lldb/unittests/Host/ |
D | MainLoopTest.cpp | 59 return [&](MainLoopBase &loop) { in make_callback()
|
/external/llvm-project/lldb/tools/lldb-server/ |
D | lldb-gdbserver.cpp | 96 static void sighup_handler(MainLoopBase &mainloop) { in sighup_handler()
|
/external/llvm-project/lldb/source/Plugins/Process/FreeBSDRemote/ |
D | NativeProcessFreeBSD.cpp | 145 SIGCHLD, [this](MainLoopBase &) { SigchldHandler(); }, status); in NativeProcessFreeBSD() argument
|
/external/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
D | NativeProcessNetBSD.cpp | 150 SIGCHLD, [this](MainLoopBase &) { SigchldHandler(); }, status); in NativeProcessNetBSD() argument
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationServerLLGS.cpp | 995 read_object_sp, [this](MainLoopBase &) { DataAvailableCallback(); }, in InitializeConnection() argument 1046 [this](MainLoopBase &) { SendProcessOutput(); }, error); in StartSTDIOForwarding() argument
|
/external/llvm-project/lldb/source/Plugins/Process/Linux/ |
D | NativeProcessLinux.cpp | 299 SIGCHLD, [this](MainLoopBase &) { SigchldHandler(); }, status); in NativeProcessLinux() argument
|