Home | History | Annotate | Download | only in spdy

Lines Matching refs:block

441     uint16 type = ntohs(block()->control_.type_);
447 return ntohs(block()->control_.version_) & kVersionMask;
456 uint16 type = ntohs(block()->control_.type_);
466 // Returns true if this control frame is of a type that has a header block,
476 // The size of the 'Number of Name/Value pairs' field in a Name/Value block.
479 // The size of the 'Length of a name' field in a Name/Value block.
482 // The size of the 'Length of a value' field in a Name/Value block.
486 const struct SpdyFrameBlock* block() const {
503 return ntohl(block()->stream_id_) & kStreamIdMask;
511 return ntohl(block()->associated_stream_id_) & kStreamIdMask;
519 return (block()->priority_ & kPriorityMask) >> 6;
522 // The number of bytes in the header block beyond the frame header length.
528 return reinterpret_cast<const char*>(block()) + size();
536 const struct SpdySynStreamControlFrameBlock* block() const {
553 return ntohl(block()->stream_id_) & kStreamIdMask;
565 return reinterpret_cast<const char*>(block()) + size();
573 const struct SpdySynReplyControlFrameBlock* block() const {
590 return ntohl(block()->stream_id_) & kStreamIdMask;
599 static_cast<SpdyStatusCodes>(ntohl(block()->status_));
614 const struct SpdyRstStreamControlFrameBlock* block() const {
630 return ntohl(block()->num_entries_);
642 return reinterpret_cast<const char*>(block()) + size();
650 const struct SpdySettingsControlFrameBlock* block() const {
675 return ntohl(block()->unique_id_);
685 const struct SpdyPingControlFrameBlock* block() const {
700 return ntohl(block()->last_accepted_stream_id_) & kStreamIdMask;
710 const struct SpdyGoAwayControlFrameBlock* block() const {
727 return ntohl(block()->stream_id_) & kStreamIdMask;
734 // The number of bytes in the header block beyond the frame header length.
740 return reinterpret_cast<const char*>(block()) + size();
748 const struct SpdyHeadersControlFrameBlock* block() const {
765 return ntohl(block()->stream_id_) & kStreamIdMask;
773 return ntohl(block()->delta_window_size_);
785 const struct SpdyWindowUpdateControlFrameBlock* block() const {