Home | History | Annotate | Download | only in processor

Lines Matching defs:stream_type

4203         Swap(&directory_entry->stream_type);
4209 unsigned int stream_type = directory_entry->stream_type;
4210 switch (stream_type) {
4218 if (stream_map_->find(stream_type) != stream_map_->end()) {
4222 stream_type << ", but can only deal with one";
4231 (*stream_map_)[stream_type].stream_index = stream_index;
4295 static const char* get_stream_name(uint32_t stream_type) {
4296 switch (stream_type) {
4387 printf(" stream_type = 0x%x (%s)\n", directory_entry->stream_type,
4388 get_stream_name(directory_entry->stream_type));
4399 uint32_t stream_type = iterator->first;
4401 printf(" stream type 0x%x (%s) at index %d\n", stream_type,
4402 get_stream_name(stream_type),
4538 bool Minidump::SeekToStreamType(uint32_t stream_type,
4550 MinidumpStreamMap::const_iterator iterator = stream_map_->find(stream_type);
4553 BPLOG(INFO) << "SeekToStreamType: type " << stream_type << " not present";
4559 BPLOG(ERROR) << "SeekToStreamType: type " << stream_type <<
4568 stream_type;
4583 const uint32_t stream_type = T::kStreamType;
4585 BPLOG_IF(ERROR, !stream) << "Minidump::GetStream type " << stream_type <<
4591 BPLOG(ERROR) << "Invalid Minidump for GetStream type " << stream_type;
4595 MinidumpStreamMap::iterator iterator = stream_map_->find(stream_type);
4598 BPLOG(INFO) << "GetStream: type " << stream_type << " not present";
4607 // method, and there is a direct correlation between T and stream_type.
4613 if (!SeekToStreamType(stream_type, &stream_length)) {
4614 BPLOG(ERROR) << "GetStream could not seek to stream type " << stream_type;
4621 BPLOG(ERROR) << "GetStream could not read stream type " << stream_type;