Home
last modified time | relevance | path

Searched refs:handler_stack_ (Results 1 – 4 of 4) sorted by relevance

/external/google-breakpad/src/client/solaris/handler/
Dexception_handler.cc57 std::vector<ExceptionHandler*> *ExceptionHandler::handler_stack_ = NULL; member in google_breakpad::ExceptionHandler
81 if (handler_stack_ == NULL) in ExceptionHandler()
82 handler_stack_ = new std::vector<ExceptionHandler *>; in ExceptionHandler()
83 handler_stack_->push_back(this); in ExceptionHandler()
91 if (handler_stack_->back() == this) { in ~ExceptionHandler()
92 handler_stack_->pop_back(); in ~ExceptionHandler()
96 handler_stack_->begin(); in ~ExceptionHandler()
97 iterator != handler_stack_->end(); in ~ExceptionHandler()
100 handler_stack_->erase(iterator); in ~ExceptionHandler()
105 if (handler_stack_->empty()) { in ~ExceptionHandler()
[all …]
Dexception_handler.h186 static std::vector<ExceptionHandler *> *handler_stack_; variable
/external/google-breakpad/src/client/windows/handler/
Dexception_handler.cc55 vector<ExceptionHandler*>* ExceptionHandler::handler_stack_ = NULL; member in google_breakpad::ExceptionHandler
275 if (!handler_stack_) { in Initialize()
276 handler_stack_ = new vector<ExceptionHandler*>(); in Initialize()
278 handler_stack_->push_back(this); in Initialize()
318 if (handler_stack_->back() == this) { in ~ExceptionHandler()
319 handler_stack_->pop_back(); in ~ExceptionHandler()
324 vector<ExceptionHandler*>::iterator iterator = handler_stack_->begin(); in ~ExceptionHandler()
325 while (iterator != handler_stack_->end()) { in ~ExceptionHandler()
327 iterator = handler_stack_->erase(iterator); in ~ExceptionHandler()
334 if (handler_stack_->empty()) { in ~ExceptionHandler()
[all …]
Dexception_handler.h499 static vector<ExceptionHandler*>* handler_stack_; variable