Home
last modified time | relevance | path

Searched refs:current_function_ (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/google-breakpad/src/common/
H A Dstabs_to_module.cc70 delete current_function_; in ~StabsToModule()
97 assert(!current_function_); in StartFunction()
103 current_function_ = f; in StartFunction()
109 assert(current_function_); in EndFunction()
114 if (current_function_->address >= comp_unit_base_address_) in EndFunction()
115 functions_.push_back(current_function_); in EndFunction()
117 delete current_function_; in EndFunction()
118 current_function_ = NULL; in EndFunction()
125 assert(current_function_); in Line()
136 current_function_->lines.push_back(line); in Line()
H A Dstabs_to_module.h69 current_function_(NULL), in StabsToModule()
128 Module::Function *current_function_; variable