Home
last modified time | relevance | path

Searched refs:pending_functions (Results 1 – 4 of 4) sorted by relevance

/system/core/init/
Depoll.cpp84 std::vector<std::function<void()>*> pending_functions; in Wait() local
86 pending_functions.emplace_back(reinterpret_cast<std::function<void()>*>(ev[i].data.ptr)); in Wait()
89 return pending_functions; in Wait()
Dkeychords_test.cpp215 auto pending_functions = epoll_.Wait(wait); in RelaxForMs() local
216 ASSERT_RESULT_OK(pending_functions); in RelaxForMs()
217 for (const auto& function : *pending_functions) { in RelaxForMs()
Dinit.cpp911 auto pending_functions = epoll.Wait(epoll_timeout); in SecondStageMain() local
912 if (!pending_functions.ok()) { in SecondStageMain()
913 LOG(ERROR) << pending_functions.error(); in SecondStageMain()
914 } else if (!pending_functions->empty()) { in SecondStageMain()
919 for (const auto& function : *pending_functions) { in SecondStageMain()
Dproperty_service.cpp1183 auto pending_functions = epoll.Wait(std::nullopt); in PropertyServiceThread() local
1184 if (!pending_functions.ok()) { in PropertyServiceThread()
1185 LOG(ERROR) << pending_functions.error(); in PropertyServiceThread()
1187 for (const auto& function : *pending_functions) { in PropertyServiceThread()