Searched refs:g_handler_stack_ (Results 1 – 1 of 1) sorted by relevance
212 std::vector<ExceptionHandler*>* g_handler_stack_ = NULL; variable237 if (!g_handler_stack_) in ExceptionHandler()238 g_handler_stack_ = new std::vector<ExceptionHandler*>; in ExceptionHandler()243 g_handler_stack_->push_back(this); in ExceptionHandler()251 std::find(g_handler_stack_->begin(), g_handler_stack_->end(), this); in ~ExceptionHandler()252 g_handler_stack_->erase(handler); in ~ExceptionHandler()253 if (g_handler_stack_->empty()) { in ~ExceptionHandler()254 delete g_handler_stack_; in ~ExceptionHandler()255 g_handler_stack_ = NULL; in ~ExceptionHandler()351 for (int i = g_handler_stack_->size() - 1; !handled && i >= 0; --i) { in SignalHandler()[all …]