OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:handler_stack_
(Results
1 - 4
of
4
) sorted by null
/external/google-breakpad/src/client/solaris/handler/
exception_handler.cc
57
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_
->empty())
[
all
...]
exception_handler.h
186
static std::vector<ExceptionHandler *> *
handler_stack_
;
member in class:google_breakpad::ExceptionHandler
/external/google-breakpad/src/client/windows/handler/
exception_handler.cc
56
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_
->empty())
[
all
...]
exception_handler.h
497
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 196 milliseconds