Searched defs:type_byte (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/net/quic/crypto/
H A Dcert_compressor.cc352 const uint8 type_byte = in[0]; local
355 if (type_byte == 0) {
359 entry.type = static_cast<CertEntry::Type>(type_byte);
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_leveldb_coding.cc1351 unsigned char type_byte = 0; local
1352 if (!DecodeByte(slice, &type_byte))
1354 DCHECK_EQ(type_byte, kDatabaseFreeListTypeByte);
1388 unsigned char type_byte = 0; local
1389 if (!DecodeByte(slice, &type_byte))
1391 DCHECK_EQ(type_byte, kDatabaseNameTypeByte);
1452 unsigned char type_byte = 0; local
1453 if (!DecodeByte(slice, &type_byte))
1455 DCHECK_EQ(type_byte, kObjectStoreMetaDataTypeByte);
1511 unsigned char type_byte local
1578 unsigned char type_byte = 0; local
1622 unsigned char type_byte = 0; local
1679 unsigned char type_byte = 0; local
1713 unsigned char type_byte = 0; local
[all...]
/external/chromium_org/net/quic/
H A Dquic_framer.cc1885 uint8 type_byte = 0; local
1892 type_byte |= frame.stream_frame->fin ? kQuicStreamFinMask : 0;
1895 type_byte <<= kQuicStreamDataLengthShift;
1896 type_byte |= no_stream_frame_length ? 0: kQuicStreamDataLengthMask;
1899 type_byte <<= kQuicStreamOffsetShift;
1902 type_byte |= offset_len - 1;
1906 type_byte <<= kQuicStreamIdShift;
1907 type_byte |= GetStreamIdSize(frame.stream_frame->stream_id) - 1;
1908 type_byte |= kQuicFrameTypeStreamMask; // Set Stream Frame Type to 1.
1915 type_byte
2016 uint8 type_byte = ack_info.nack_ranges.empty() ? 0 : kQuicHasNacksMask; local
[all...]

Completed in 118 milliseconds