Searched refs:decoder (Results 1 – 8 of 8) sorted by relevance
22 let mut decoder = Decoder::new(); in run() localVariable32 match decoder.decode_one(&mut visitor) { in run()
81 let mut decoder = DeflateDecoder::new(Vec::new()); in handle() localVariable87 decoder.write_all(&chunk).unwrap(); in handle()88 let remaining = pipe_tx.write_all(mem::take(decoder.get_mut())).await; in handle()90 *decoder.get_mut() = remaining; in handle()94 let remaining = pipe_tx.write_all(decoder.finish().unwrap()).await; in handle()
145 let mut decoder = Decoder::new(); in main() localVariable164 decoder.decode_one(&mut disas)?; in main()
3 description = "The Pulley interpreter, its bytecode definition, encoder, decoder, and etc..."
107 higher-order macro and then automatically derive a disassembler, decoder,109 the encoder and decoder get out of sync with each other, for example.
523 let mut decoder = DeflateDecoder::new(Vec::new()); in test_http_echo() localVariable524 decoder.write_all(&collected_body)?; in test_http_echo()525 decoder.finish()? in test_http_echo()
524 let mut decoder = Decoder::new(); in decode_all() localVariable528 results.push(decoder.decode_one(visitor)?); in decode_all()
492 let mut decoder = Decoder::new(); in disas_pulley() localVariable497 match decoder.decode_one(&mut disas) { in disas_pulley()