Searched refs:ptrLoop (Results 1 – 4 of 4) sorted by relevance
| /developtools/hdc/src/test/jdwp/ |
| D | main.cpp | 58 static bool TryCloseLoop(uv_loop_t *ptrLoop, const char *callerName) in TryCloseLoop() argument 65 if (uv_loop_close(ptrLoop) == UV_EBUSY) { in TryCloseLoop() 70 if (ptrLoop->active_handles >= maxHandle) { in TryCloseLoop() 76 uv_walk(ptrLoop, clearLoopTask, nullptr); in TryCloseLoop() 78 if (!ptrLoop->active_handles) { in TryCloseLoop() 82 if (!uv_run(ptrLoop, UV_RUN_ONCE)) { in TryCloseLoop()
|
| /developtools/hdc/src/daemon/ |
| D | daemon_tcp.cpp | 71 uv_loop_t *ptrLoop = server->loop; in AcceptClient() local 92 Base::StartWorkThread(ptrLoop, ptrConnect->SessionWorkThread, Base::FinishWorkThread, hSession); in AcceptClient()
|
| /developtools/hdc/src/common/ |
| D | base.cpp | 344 bool TryCloseLoop(uv_loop_t *ptrLoop, const char *callerName) in TryCloseLoop() argument 355 if (uv_loop_close(ptrLoop) == UV_EBUSY) { in TryCloseLoop() 360 if (ptrLoop->active_handles >= 2) { // 2:at least 2 handles for read & write. in TryCloseLoop() 364 uv_walk(ptrLoop, clearLoopTask, nullptr); in TryCloseLoop() 366 if (!ptrLoop->active_handles) { in TryCloseLoop() 370 if (!uv_run(ptrLoop, UV_RUN_ONCE)) { in TryCloseLoop() 385 bool TryCloseChildLoop(uv_loop_t *ptrLoop, const char *callerName) in TryCloseChildLoop() argument 396 if (uv_loop_close(ptrLoop) == UV_EBUSY) { in TryCloseChildLoop() 401 if (ptrLoop->active_handles >= 2) { // 2:at least 2 handles for read & write. in TryCloseChildLoop() 405 uv_walk(ptrLoop, clearLoopTask, nullptr); in TryCloseChildLoop() [all …]
|
| D | base.h | 50 bool TryCloseLoop(uv_loop_t *ptrLoop, const char *callerName); 51 bool TryCloseChildLoop(uv_loop_t *ptrLoop, const char *callerName);
|