Home | History | Annotate | Download | only in processor

Lines Matching full:header_

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