Lines Matching refs:push_id
54 push_id: u64,
65 push_id: u64,
74 push_id: u64,
97 push_id: b.get_varint()?, in from_bytes()
111 push_id: b.get_varint()?, in from_bytes()
138 Frame::CancelPush { push_id } => { in to_bytes()
140 b.put_varint(octets::varint_len(*push_id) as u64)?; in to_bytes()
142 b.put_varint(*push_id)?; in to_bytes()
198 push_id, in to_bytes()
201 let len = octets::varint_len(*push_id) + header_block.len(); in to_bytes()
205 b.put_varint(*push_id)?; in to_bytes()
216 Frame::MaxPushId { push_id } => { in to_bytes()
218 b.put_varint(octets::varint_len(*push_id) as u64)?; in to_bytes()
220 b.put_varint(*push_id)?; in to_bytes()
241 Frame::CancelPush { push_id } => { in fmt()
242 write!(f, "CANCEL_PUSH push_id={}", push_id)?; in fmt()
255 push_id, in fmt()
261 push_id, in fmt()
270 Frame::MaxPushId { push_id } => { in fmt()
271 write!(f, "MAX_PUSH_ID push_id={}", push_id)?; in fmt()
323 let push_id = b.get_varint()?; in parse_push_promise() localVariable
324 let header_block_length = payload_length - octets::varint_len(push_id) as u64; in parse_push_promise()
328 push_id, in parse_push_promise()
397 let frame = Frame::CancelPush { push_id: 0 }; in cancel_push()
565 push_id: 0, in push_promise()
618 let frame = Frame::MaxPushId { push_id: 128 }; in max_push_id()