Lines Matching refs:ExceptionHandler
57 std::vector<ExceptionHandler*> *ExceptionHandler::handler_stack_ = NULL;
58 int ExceptionHandler::handler_stack_index_ = 0;
59 pthread_mutex_t ExceptionHandler::handler_stack_mutex_ =
62 ExceptionHandler::ExceptionHandler(const string &dump_path, in ExceptionHandler() function in google_breakpad::ExceptionHandler
82 handler_stack_ = new std::vector<ExceptionHandler *>; in ExceptionHandler()
88 ExceptionHandler::~ExceptionHandler() { in ~ExceptionHandler()
95 for (std::vector<ExceptionHandler *>::iterator iterator = in ~ExceptionHandler()
114 bool ExceptionHandler::WriteMinidump() { in WriteMinidump()
119 bool ExceptionHandler::WriteMinidump(const string &dump_path, in WriteMinidump()
122 ExceptionHandler handler(dump_path, NULL, callback, in WriteMinidump()
127 void ExceptionHandler::SetupHandler() { in SetupHandler()
143 void ExceptionHandler::SetupHandler(int signo) { in SetupHandler()
152 void ExceptionHandler::TeardownHandler(int signo) { in TeardownHandler()
161 void ExceptionHandler::TeardownAllHandlers() { in TeardownAllHandlers()
168 void ExceptionHandler::HandleException(int signo) { in HandleException()
184 ExceptionHandler *current_handler = in HandleException()
219 bool ExceptionHandler::InternalWriteMinidump(int signo, in InternalWriteMinidump()