HomeSort by relevance Sort by last modified time
    Searched defs:HpackInputStream (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/net/spdy/
hpack_input_stream.h 22 // An HpackInputStream handles all the low-level details of decoding
24 class NET_EXPORT_PRIVATE HpackInputStream {
28 HpackInputStream(uint32 max_string_literal_size, base::StringPiece buffer);
29 ~HpackInputStream();
75 DISALLOW_COPY_AND_ASSIGN(HpackInputStream);
hpack_input_stream.cc 17 HpackInputStream::HpackInputStream(uint32 max_string_literal_size,
23 HpackInputStream::~HpackInputStream() {}
25 bool HpackInputStream::HasMoreData() const {
29 bool HpackInputStream::MatchPrefixAndConsume(HpackPrefix prefix) {
46 bool HpackInputStream::PeekNextOctet(uint8* next_octet) {
54 bool HpackInputStream::DecodeNextOctet(uint8* next_octet) {
62 bool HpackInputStream::DecodeNextUint32(uint32* I) {
97 bool HpackInputStream::DecodeNextIdentityString(StringPiece* str)
    [all...]

Completed in 154 milliseconds