Home
last modified time | relevance | path

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

/external/google-breakpad/src/client/windows/handler/
Dexception_handler.cc169 handler_start_semaphore_ = NULL; in Initialize()
210 handler_start_semaphore_ = CreateSemaphore(NULL, 0, 1, NULL); in Initialize()
211 assert(handler_start_semaphore_ != NULL); in Initialize()
217 if (handler_finish_semaphore_ != NULL && handler_start_semaphore_ != NULL) { in Initialize()
355 ReleaseSemaphore(handler_start_semaphore_, 1, NULL); in ~ExceptionHandler()
365 CloseHandle(handler_start_semaphore_); in ~ExceptionHandler()
388 assert(self->handler_start_semaphore_ != NULL); in ExceptionHandlerThreadMain()
392 if (WaitForSingleObject(self->handler_start_semaphore_, INFINITE) == in ExceptionHandlerThreadMain()
713 assert(handler_start_semaphore_ != NULL); in WriteMinidumpOnHandlerThread()
722 ReleaseSemaphore(handler_start_semaphore_, 1, NULL); in WriteMinidumpOnHandlerThread()
Dexception_handler.h459 HANDLE handler_start_semaphore_; variable