Home
last modified time | relevance | path

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

/external/google-breakpad/src/client/windows/handler/
Dexception_handler.cc171 handler_finish_semaphore_ = NULL; in Initialize()
214 handler_finish_semaphore_ = CreateSemaphore(NULL, 0, 1, NULL); in Initialize()
215 assert(handler_finish_semaphore_ != NULL); in Initialize()
218 if (handler_finish_semaphore_ != NULL && handler_start_semaphore_ != NULL) { in Initialize()
365 CloseHandle(handler_finish_semaphore_); in ~ExceptionHandler()
388 assert(self->handler_finish_semaphore_ != NULL); in ExceptionHandlerThreadMain()
405 ReleaseSemaphore(self->handler_finish_semaphore_, 1, NULL); in ExceptionHandlerThreadMain()
711 assert(handler_finish_semaphore_ != NULL); in WriteMinidumpOnHandlerThread()
722 WaitForSingleObject(handler_finish_semaphore_, INFINITE); in WriteMinidumpOnHandlerThread()
Dexception_handler.h458 HANDLE handler_finish_semaphore_; variable