Lines Matching refs:handle
34 uv_close(reinterpret_cast<uv_handle_t*>(g_inputSignal), [](uv_handle_t* handle) {
35 if (handle != nullptr) {
36 uv_async_t* asyncHandle = reinterpret_cast<uv_async_t*>(handle);
47 uv_close(reinterpret_cast<uv_handle_t*>(g_socketSignal), [](uv_handle_t* handle) {
48 if (handle != nullptr) {
49 delete reinterpret_cast<uv_async_t*>(handle);
50 handle = nullptr;
55 uv_close(reinterpret_cast<uv_handle_t*>(g_releaseHandle), [](uv_handle_t* handle) {
56 if (handle != nullptr) {
57 delete reinterpret_cast<uv_async_t*>(handle);
58 handle = nullptr;
75 void InputOnMessage(uv_async_t *handle)
77 char* msg = static_cast<char*>(handle->data);
140 void SocketOnMessage([[maybe_unused]] uv_async_t *handle)