Searched refs:g_handler_stack_ (Results 1 – 1 of 1) sorted by relevance
209 std::vector<ExceptionHandler*>* g_handler_stack_ = NULL; variable251 if (!g_handler_stack_) in ExceptionHandler()252 g_handler_stack_ = new std::vector<ExceptionHandler*>; in ExceptionHandler()257 g_handler_stack_->push_back(this); in ExceptionHandler()265 std::find(g_handler_stack_->begin(), g_handler_stack_->end(), this); in ~ExceptionHandler()266 g_handler_stack_->erase(handler); in ~ExceptionHandler()267 if (g_handler_stack_->empty()) { in ~ExceptionHandler()268 delete g_handler_stack_; in ~ExceptionHandler()269 g_handler_stack_ = NULL; in ~ExceptionHandler()378 for (int i = g_handler_stack_->size() - 1; !handled && i >= 0; --i) { in SignalHandler()[all …]