Lines Matching refs:epoll
121 static void InstallInitNotifier(Epoll* epoll) { in InstallInitNotifier() argument
131 if (auto result = epoll->RegisterHandler(wake_main_thread_fd, clear_eventfd); !result.ok()) { in InstallInitNotifier()
602 static void InstallSignalFdHandler(Epoll* epoll) { in InstallSignalFdHandler() argument
633 if (auto result = epoll->RegisterHandler(signal_fd, HandleSignalFd); !result.ok()) { in InstallSignalFdHandler()
792 Epoll epoll; in SecondStageMain() local
793 if (auto result = epoll.Open(); !result.ok()) { in SecondStageMain()
797 InstallSignalFdHandler(&epoll); in SecondStageMain()
798 InstallInitNotifier(&epoll); in SecondStageMain()
812 MountHandler mount_handler(&epoll); in SecondStageMain()
851 [&epoll, &keychords](const BuiltinArguments& args) -> Result<void> { in SecondStageMain()
855 keychords.Start(&epoll, HandleKeychord); in SecondStageMain()
911 auto pending_functions = epoll.Wait(epoll_timeout); in SecondStageMain()