Home
last modified time | relevance | path

Searched refs:gEventLoop (Results 1 – 2 of 2) sorted by relevance

/system/chre/platform/slpi/
Dinit.cc59 EventLoop *gEventLoop; variable
102 gEventLoop = chre::EventLoopManagerSingleton::get()->createEventLoop(); in chreThreadEntry()
103 if (gEventLoop == nullptr) { in chreThreadEntry()
106 loadStaticNanoapps(gEventLoop); in chreThreadEntry()
107 gEventLoop->run(); in chreThreadEntry()
111 gEventLoop = nullptr; in chreThreadEntry()
126 return (qurt_thread_get_id() == gThreadHandle) ? gEventLoop : nullptr; in getCurrentEventLoop()
201 if (!gThreadRunning || gEventLoop == nullptr) { in chre_slpi_stop_thread()
204 gEventLoop->stop(); in chre_slpi_stop_thread()
/system/chre/platform/linux/
Devent_loop.cc22 chre::EventLoop *gEventLoop = nullptr; variable
29 if (gEventLoop == nullptr) { in getCurrentEventLoop()
30 gEventLoop = chre::EventLoopManagerSingleton::get()->createEventLoop(); in getCurrentEventLoop()
35 return gEventLoop; in getCurrentEventLoop()