Lines Matching defs:handle
315 void SyncProcessStdioPipe::AllocCallback(uv_handle_t* handle,
319 reinterpret_cast<SyncProcessStdioPipe*>(handle->data);
335 reinterpret_cast<SyncProcessStdioPipe*>(req->handle->data);
342 reinterpret_cast<SyncProcessStdioPipe*>(req->handle->data);
346 // Libuv is not the right place to handle that because it can't tell
355 void SyncProcessStdioPipe::CloseCallback(uv_handle_t* handle) {
357 reinterpret_cast<SyncProcessStdioPipe*>(handle->data);
488 // CloseHandlesAndDeleteLoop() will immediately close the timer handle
518 // We can't handle uv_run failure.
533 // Close the process handle when ExitCallback was not called.
537 // Close the process handle if it is still open. The handle type also
1085 void SyncProcessRunner::ExitCallback(uv_process_t* handle,
1088 SyncProcessRunner* self = reinterpret_cast<SyncProcessRunner*>(handle->data);
1089 uv_close(reinterpret_cast<uv_handle_t*>(handle), nullptr);
1094 void SyncProcessRunner::KillTimerCallback(uv_timer_t* handle) {
1095 SyncProcessRunner* self = reinterpret_cast<SyncProcessRunner*>(handle->data);
1100 void SyncProcessRunner::KillTimerCloseCallback(uv_handle_t* handle) {