Home
last modified time | relevance | path

Searched refs:EncoderInstruction (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/format/
H A Ddecoder.rs21 DeltaBase, EncoderInstPrefixBit, EncoderInstruction, MidBit, PrefixMask, ReprPrefixBit,
47 ) -> Result<Option<(usize, EncoderInstruction)>, H3errorQpack> { in decode() argument
162 (usize, EncoderInstruction),
239 fn decode(self, buf: &[u8]) -> DecResult<(usize, EncoderInstruction), InstDecodeState> { in decode() argument
242 DecResult::Decoded((buf_index, EncoderInstruction::SetCap { capacity: index })) in decode()
273 DecResult::Decoded((remain_buf, EncoderInstruction::Duplicate { index })) in decode()
644 EncoderInstruction,
758 fn decode(self, buf: &[u8]) -> DecResult<(usize, EncoderInstruction), InstDecodeState> { in decode() argument
763 EncoderInstruction::InsertWithIndex { in decode()
773 EncoderInstruction::InsertWithLiteral { in decode()
H A Dencoder.rs22 use crate::h3::qpack::{DecoderInstPrefixBit, DecoderInstruction, EncoderInstruction, PrefixMask};
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/
H A Ddecoder.rs20 DeltaBase, EncoderInstPrefixBit, EncoderInstruction, MidBit, ReprPrefixBit, Representation,
131 (offset, EncoderInstruction::SetCap { capacity }) => { in decode_ins()
138 EncoderInstruction::InsertWithIndex { in decode_ins()
149 EncoderInstruction::InsertWithLiteral { in decode_ins()
158 (offset, EncoderInstruction::Duplicate { index }) => { in decode_ins()
H A Dmod.rs204 pub(crate) enum EncoderInstruction { enum