Searched refs:handler_stack_ (Results 1 – 4 of 4) sorted by relevance
57 std::vector<ExceptionHandler*> *ExceptionHandler::handler_stack_ = NULL; member in google_breakpad::ExceptionHandler81 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 …]
186 static std::vector<ExceptionHandler *> *handler_stack_; variable
55 vector<ExceptionHandler*>* ExceptionHandler::handler_stack_ = NULL; member in google_breakpad::ExceptionHandler275 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 …]
499 static vector<ExceptionHandler*>* handler_stack_; variable