Home
last modified time | relevance | path

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

/aosp_15_r20/external/google-breakpad/src/client/windows/handler/
H A Dexception_handler.cc172 handler_start_semaphore_ = NULL; in Initialize()
213 handler_start_semaphore_ = CreateSemaphore(NULL, 0, 1, NULL); in Initialize()
214 assert(handler_start_semaphore_ != NULL); in Initialize()
220 if (handler_finish_semaphore_ != NULL && handler_start_semaphore_ != NULL) { in Initialize()
358 ReleaseSemaphore(handler_start_semaphore_, 1, NULL); in ~ExceptionHandler()
368 CloseHandle(handler_start_semaphore_); in ~ExceptionHandler()
391 assert(self->handler_start_semaphore_ != NULL); in ExceptionHandlerThreadMain()
395 if (WaitForSingleObject(self->handler_start_semaphore_, INFINITE) == in ExceptionHandlerThreadMain()
716 assert(handler_start_semaphore_ != NULL); in WriteMinidumpOnHandlerThread()
725 ReleaseSemaphore(handler_start_semaphore_, 1, NULL); in WriteMinidumpOnHandlerThread()
H A Dexception_handler.h458 HANDLE handler_start_semaphore_; variable