Searched defs:StabsToModule (Results 1 - 2 of 2) sorted by relevance

/external/google-breakpad/src/common/
H A Dstabs_to_module.h34 // dump_stabs.h: Define the StabsToModule class, which receives
54 // A StabsToModule is a handler that receives parsed STABS debugging
58 // how to write itself out as such. A StabsToModule thus acts as
62 class StabsToModule: public google_breakpad::StabsHandler { class in namespace:google_breakpad
66 StabsToModule(Module *module) : function in class:google_breakpad::StabsToModule
73 ~StabsToModule();
H A Dstabs_to_module.cc32 // dump_stabs.cc --- implement the StabsToModule class.
59 StabsToModule::~StabsToModule() {
68 bool StabsToModule::StartCompilationUnit(const char *name, uint64_t address,
79 bool StabsToModule::EndCompilationUnit(uint64_t address) {
90 bool StabsToModule::StartFunction(const string &name,
94 f->size = 0; // We compute this in StabsToModule::Finalize().
101 bool StabsToModule::EndFunction(uint64_t address) {
117 bool StabsToModule::Line(uint64_t address, const char *name, int number) {
126 line.size = 0; // We compute this in StabsToModule
[all...]

Completed in 238 milliseconds