Home
last modified time | relevance | path

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

/external/rust/android-crates-io/crates/h2/src/proto/streams/
Dsend.rs37 is_push_enabled: bool, field
58 is_push_enabled: true, in new()
106 if !self.is_push_enabled { in send_push_promise()
533 if let Some(val) = settings.is_push_enabled() { in apply_remote_settings()
534 self.is_push_enabled = val in apply_remote_settings()
Drecv.rs58 is_push_enabled: bool, field
108 is_push_enabled: config.local_push_enabled, in new()
885 if !self.is_push_enabled { in ensure_can_reserve()
/external/rust/android-crates-io/crates/h2/src/frame/
Dsettings.rs104 pub fn is_push_enabled(&self) -> Option<bool> { in is_push_enabled() method
/external/rust/android-crates-io/crates/h2/src/proto/
Dconnection.rs112 local_push_enabled: config.settings.is_push_enabled().unwrap_or(true), in new()