Lines Matching defs:module
1737 BPLOG(ERROR) << "MinidumpModule cannot read module";
1770 BPLOG(ERROR) << "MinidumpModule has a module problem, " <<
1787 // Each module must have a name.
1794 // At this point, we have enough info for the module to be valid.
1798 // module indicates that they exist.
2460 BPLOG(ERROR) << "MinidumpModuleList could not read module count";
2468 BPLOG(ERROR) << "MinidumpModuleList module count " << module_count <<
2505 MinidumpModule* module = &(*modules)[module_index];
2508 if (!module->Read()) {
2509 BPLOG(ERROR) << "MinidumpModuleList could not read module " <<
2515 // Loop through the module list once more to read additional data and
2523 MinidumpModule* module = &(*modules)[module_index];
2525 // ReadAuxiliaryData fails if any data that the module indicates should
2528 // handle, it shouldn't render the entire dump invalid. Check module
2530 if (!module->ReadAuxiliaryData() && !module->valid()) {
2531 BPLOG(ERROR) << "MinidumpModuleList could not read required module "
2532 "auxiliary data for module " <<
2537 // It is safe to use module->code_file() after successfully calling
2538 // module->ReadAuxiliaryData or noting that the module is valid.
2540 uint64_t base_address = module->base_address();
2541 uint64_t module_size = module->size();
2544 "for module " << module_index << "/" << module_count <<
2545 ", " << module->code_file();
2555 if (module->code_file().compare(
2557 BPLOG(ERROR) << "MinidumpModuleList could not store module " <<
2559 module->code_file() << ", " <<
2564 BPLOG(INFO) << "MinidumpModuleList ignoring overlapping module " <<
2566 module->code_file() << ", " <<
2592 BPLOG(INFO) << "MinidumpModuleList has no module at " <<
2607 // The main code module is the first one present in a minidump file's
2628 BPLOG(ERROR) << "MinidumpModuleList has no module at sequence " << sequence;
2671 printf("module[%d]\n", module_index);