Lines Matching refs:header_
3986 : header_(), in Minidump()
3996 : header_(), in Minidump()
4125 if (!ReadBytes(&header_, sizeof(MDRawHeader))) { in Read()
4130 if (header_.signature != MD_HEADER_SIGNATURE) { in Read()
4135 uint32_t signature_swapped = header_.signature; in Read()
4140 HexString(header_.signature) << ", " << in Read()
4156 Swap(&header_.signature); in Read()
4157 Swap(&header_.version); in Read()
4158 Swap(&header_.stream_count); in Read()
4159 Swap(&header_.stream_directory_rva); in Read()
4160 Swap(&header_.checksum); in Read()
4161 Swap(&header_.time_date_stamp); in Read()
4162 Swap(&header_.flags); in Read()
4167 if ((header_.version & 0x0000ffff) != MD_HEADER_VERSION) { in Read()
4169 HexString(header_.version & 0x0000ffff) << " != " << in Read()
4174 if (!SeekSet(header_.stream_directory_rva)) { in Read()
4179 if (header_.stream_count > max_streams_) { in Read()
4180 BPLOG(ERROR) << "Minidump stream count " << header_.stream_count << in Read()
4185 if (header_.stream_count != 0) { in Read()
4187 new MinidumpDirectoryEntries(header_.stream_count)); in Read()
4192 sizeof(MDRawDirectory) * header_.stream_count)) { in Read()
4198 stream_index < header_.stream_count; in Read()
4369 printf(" signature = 0x%x\n", header_.signature); in Print()
4370 printf(" version = 0x%x\n", header_.version); in Print()
4371 printf(" stream_count = %d\n", header_.stream_count); in Print()
4372 printf(" stream_directory_rva = 0x%x\n", header_.stream_directory_rva); in Print()
4373 printf(" checksum = 0x%x\n", header_.checksum); in Print()
4375 header_.time_date_stamp, in Print()
4376 TimeTToUTCString(header_.time_date_stamp).c_str()); in Print()
4377 printf(" flags = 0x%" PRIx64 "\n", header_.flags); in Print()
4381 stream_index < header_.stream_count; in Print()
4416 if (index >= header_.stream_count) { in GetDirectoryEntryAtIndex()
4418 index << "/" << header_.stream_count; in GetDirectoryEntryAtIndex()
4558 if (info.stream_index >= header_.stream_count) { in SeekToStreamType()
4561 info.stream_index << "/" << header_.stream_count; in SeekToStreamType()