Home
last modified time | relevance | path

Searched refs:pipeline_flush (Results 1 – 3 of 3) sorted by relevance

/external/rust/android-crates-io/crates/hyper/src/server/conn/
Dhttp1.rs48 pipeline_flush: bool, field
214 pipeline_flush: false, in new()
310 pub fn pipeline_flush(&mut self, enabled: bool) -> &mut Self { in pipeline_flush() method
311 self.pipeline_flush = enabled; in pipeline_flush()
383 conn.set_flush_pipeline(self.pipeline_flush); in serve_connection()
/external/rust/android-crates-io/crates/hyper/src/server/
Dconn.rs123 pipeline_flush: bool, field
269 pipeline_flush: false, in new()
611 pub fn pipeline_flush(&mut self, enabled: bool) -> &mut Self { in pipeline_flush() method
612 self.pipeline_flush = enabled; in pipeline_flush()
633 pipeline_flush: self.pipeline_flush, in with_executor()
701 conn.set_flush_pipeline(self.pipeline_flush); in serve_connection()
Dserver.rs292 self.protocol.pipeline_flush(val); in http1_pipeline_flush()