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

/external/google-breakpad/src/client/solaris/handler/
H A Dexception_handler.cc57 std::vector<ExceptionHandler*> *ExceptionHandler::handler_stack_ = NULL; member in class:google_breakpad::ExceptionHandler
81 if (handler_stack_ == NULL)
82 handler_stack_ = new std::vector<ExceptionHandler *>;
83 handler_stack_->push_back(this);
91 if (handler_stack_->back() == this) {
92 handler_stack_->pop_back();
96 handler_stack_->begin();
97 iterator != handler_stack_->end();
100 handler_stack_->erase(iterator);
105 if (handler_stack_
[all...]
H A Dexception_handler.h186 static std::vector<ExceptionHandler *> *handler_stack_; member in class:google_breakpad::ExceptionHandler
/external/google-breakpad/src/client/windows/handler/
H A Dexception_handler.cc56 vector<ExceptionHandler*>* ExceptionHandler::handler_stack_ = NULL; member in class:google_breakpad::ExceptionHandler
275 if (!handler_stack_) {
276 handler_stack_ = new vector<ExceptionHandler*>();
278 handler_stack_->push_back(this);
318 if (handler_stack_->back() == this) {
319 handler_stack_->pop_back();
324 vector<ExceptionHandler*>::iterator iterator = handler_stack_->begin();
325 while (iterator != handler_stack_->end()) {
327 iterator = handler_stack_->erase(iterator);
334 if (handler_stack_
[all...]
H A Dexception_handler.h497 static vector<ExceptionHandler*>* handler_stack_; member in class:google_breakpad::ExceptionHandler
499 // The index of the ExceptionHandler in handler_stack_ that will handle the
500 // next exception. Note that 0 means the last entry in handler_stack_, 1
505 // handler_stack_critical_section_ guards operations on handler_stack_ and

Completed in 128 milliseconds