Home
last modified time | relevance | path

Searched refs:MainLoopBase (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DMainLoopBase.h36 class MainLoopBase {
41 MainLoopBase() : m_terminate_request(false) {} in MainLoopBase() function
42 virtual ~MainLoopBase() = default;
46 typedef std::function<void(MainLoopBase &)> Callback;
88 ReadHandle(MainLoopBase &mainloop, IOObject::WaitableHandle handle) in ReadHandle()
91 MainLoopBase &m_mainloop;
94 friend class MainLoopBase; variable
99 MainLoopBase(const MainLoopBase &) = delete;
100 const MainLoopBase &operator=(const MainLoopBase &) = delete;
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DMainLoopBase.cpp14 void MainLoopBase::AddPendingCallback(const Callback &callback) { in AddPendingCallback()
22 void MainLoopBase::ProcessPendingCallbacks() { in ProcessPendingCallbacks()
H A DTCPSocket.cpp268 std::vector<MainLoopBase::ReadHandleUP> handles; in Accept()
275 &listen_sock](MainLoopBase &loop) { in Accept()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DMainLoopPosix.h27 class MainLoopPosix : public MainLoopBase {
/freebsd/contrib/llvm-project/lldb/include/
H A Dmodule.modulemap37 module MainLoopBase { header "lldb/Host/MainLoopBase.h" export * }
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DMainLoopPosix.cpp232 m_read_fds.insert({trigger_pipe_fd, [trigger_pipe_fd](MainLoopBase &loop) {
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp98 static void sighup_handler(MainLoopBase &mainloop) { in sighup_handler()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp155 SIGCHLD, [this](MainLoopBase &) { SigchldHandler(); }, status); in NativeProcessFreeBSD() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp1056 m_mainloop.AddPendingCallback([this, pid](MainLoopBase &loop) { in HandleInferiorState_Exited()
1183 read_object_sp, [this](MainLoopBase &) { DataAvailableCallback(); }, in InitializeConnection() argument
1237 [this](MainLoopBase &) { SendProcessOutput(); }, error); in StartSTDIOForwarding() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp156 SIGCHLD, [this](MainLoopBase &) { SigchldHandler(); }, status); in NativeProcessNetBSD() argument
/freebsd/lib/clang/liblldb/
H A DMakefile252 SRCS+= Host/common/MainLoopBase.cpp