Lines Matching refs:mainloop
77 NativeProcessManager(MainLoop &mainloop)
78 : NativeProcessProtocol::Manager(mainloop) {}
98 static void sighup_handler(MainLoopBase &mainloop) { in sighup_handler() argument
106 mainloop.RequestTermination(); in sighup_handler()
193 void ConnectToRemote(MainLoop &mainloop, in ConnectToRemote() argument
324 MainLoop mainloop; in main_gdbserver() local
329 mainloop.RegisterSignal(SIGHUP, sighup_handler, error); in main_gdbserver()
431 NativeProcessManager manager(mainloop); in main_gdbserver()
432 GDBRemoteCommunicationServerLLGS gdb_server(mainloop, manager); in main_gdbserver()
455 ConnectToRemote(mainloop, gdb_server, reverse_connect, host_and_port, in main_gdbserver()
464 Status ret = mainloop.Run(); in main_gdbserver()