Home
last modified time | relevance | path

Searched refs:epoll (Results 1 – 9 of 9) sorted by relevance

/system/core/init/
Dinit.cpp540 static void InstallSignalFdHandler(Epoll* epoll) { in InstallSignalFdHandler() argument
571 if (auto result = epoll->RegisterHandler(signal_fd, HandleSignalFd); !result) { in InstallSignalFdHandler()
679 Epoll epoll; in SecondStageMain() local
680 if (auto result = epoll.Open(); !result) { in SecondStageMain()
684 InstallSignalFdHandler(&epoll); in SecondStageMain()
690 StartPropertyService(&epoll); in SecondStageMain()
691 MountHandler mount_handler(&epoll); in SecondStageMain()
731 [&epoll, &keychords](const BuiltinArguments& args) -> Result<Success> { in SecondStageMain()
735 keychords.Start(&epoll, HandleKeychord); in SecondStageMain()
795 if (auto result = epoll.Wait(epoll_timeout); !result) { in SecondStageMain()
Dmount_handler.cpp116 MountHandler::MountHandler(Epoll* epoll) : epoll_(epoll), fp_(fopen("/proc/mounts", "re"), fclose) { in MountHandler() argument
118 auto result = epoll->RegisterHandler( in MountHandler()
Dproperty_service.h42 void StartPropertyService(Epoll* epoll);
Dmount_handler.h43 explicit MountHandler(Epoll* epoll);
Dkeychords.h40 void Start(Epoll* epoll, std::function<void(const std::vector<int>&)> handler);
DAndroid.bp109 "epoll.cpp",
252 "epoll.cpp",
Dkeychords.cpp286 void Keychords::Start(Epoll* epoll, std::function<void(const std::vector<int>&)> handler) { in Start() argument
287 epoll_ = epoll; in Start()
Dproperty_service.cpp1003 void StartPropertyService(Epoll* epoll) { in StartPropertyService() argument
1018 if (auto result = epoll->RegisterHandler(property_set_fd, handle_property_set_fd); !result) { in StartPropertyService()
/system/core/adb/
Dprotocol.txt216 will be a select/epoll loop to handle io between various inbound and
221 channel between the main select/epoll thread and the remote connection