Lines Matching refs:module_index
2502 for (unsigned int module_index = 0; in Read() local
2503 module_index < module_count; in Read()
2504 ++module_index) { in Read()
2505 MinidumpModule* module = &(*modules)[module_index]; in Read()
2510 module_index << "/" << module_count; in Read()
2520 for (unsigned int module_index = 0; in Read() local
2521 module_index < module_count; in Read()
2522 ++module_index) { in Read()
2523 MinidumpModule* module = &(*modules)[module_index]; in Read()
2533 module_index << "/" << module_count; in Read()
2544 "for module " << module_index << "/" << module_count << in Read()
2549 if (!range_map_->StoreRange(base_address, module_size, module_index)) { in Read()
2558 module_index << "/" << module_count << ", " << in Read()
2565 module_index << "/" << module_count << ", " << in Read()
2590 unsigned int module_index; in GetModuleForAddress() local
2591 if (!range_map_->RetrieveRange(address, &module_index, NULL, NULL)) { in GetModuleForAddress()
2597 return GetModuleAtIndex(module_index); in GetModuleForAddress()
2626 unsigned int module_index; in GetModuleAtSequence() local
2627 if (!range_map_->RetrieveRangeAtIndex(sequence, &module_index, NULL, NULL)) { in GetModuleAtSequence()
2632 return GetModuleAtIndex(module_index); in GetModuleAtSequence()
2668 for (unsigned int module_index = 0; in Print() local
2669 module_index < module_count_; in Print()
2670 ++module_index) { in Print()
2671 printf("module[%d]\n", module_index); in Print()
2673 (*modules_)[module_index].Print(); in Print()