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.cc170 handler_start_semaphore_ = NULL; in Initialize()
211 handler_start_semaphore_ = CreateSemaphore(NULL, 0, 1, NULL); in Initialize()
212 assert(handler_start_semaphore_ != NULL); in Initialize()
218 if (handler_finish_semaphore_ != NULL && handler_start_semaphore_ != NULL) { in Initialize()
355 ReleaseSemaphore(handler_start_semaphore_, 1, NULL); in ~ExceptionHandler()
364 CloseHandle(handler_start_semaphore_); in ~ExceptionHandler()
387 assert(self->handler_start_semaphore_ != NULL); in ExceptionHandlerThreadMain()
391 if (WaitForSingleObject(self->handler_start_semaphore_, INFINITE) == in ExceptionHandlerThreadMain()
710 assert(handler_start_semaphore_ != NULL); in WriteMinidumpOnHandlerThread()
719 ReleaseSemaphore(handler_start_semaphore_, 1, NULL); in WriteMinidumpOnHandlerThread()
Dexception_handler.h457 HANDLE handler_start_semaphore_; variable