Searched refs:PollAt (Results 1 – 9 of 9) sorted by relevance
/smoltcp-0.9.1/src/iface/ |
D | socket_meta.rs | 3 socket::PollAt, 48 pub(crate) fn poll_at<F>(&self, socket_poll_at: PollAt, has_neighbor: F) -> PollAt in poll_at() argument 55 NeighborState::Waiting { silent_until, .. } => PollAt::Time(silent_until), in poll_at()
|
/smoltcp-0.9.1/src/socket/ |
D | mod.rs | 39 pub(crate) enum PollAt { enum 75 pub(crate) fn poll_at(&self, cx: &mut Context) -> PollAt { in poll_at() argument
|
D | tcp.rs | 12 use crate::socket::{Context, PollAt}; 255 fn poll_at(&self) -> PollAt { in poll_at() argument 259 } => PollAt::Time(keep_alive_at), in poll_at() 262 } => PollAt::Ingress, in poll_at() 263 Timer::Retransmit { expires_at, .. } => PollAt::Time(expires_at), in poll_at() 264 Timer::FastRetransmit => PollAt::Now, in poll_at() 265 Timer::Close { expires_at } => PollAt::Time(expires_at), in poll_at() 2240 pub(crate) fn poll_at(&self, cx: &mut Context) -> PollAt { in poll_at() argument 2244 PollAt::Ingress in poll_at() 2247 PollAt::Now in poll_at() [all …]
|
D | dns.rs | 8 use crate::socket::{Context, PollAt}; 617 pub(crate) fn poll_at(&self, _cx: &Context) -> PollAt { in poll_at() argument 622 State::Pending(pq) => Some(PollAt::Time(pq.retransmit_at)), in poll_at() 627 .unwrap_or(PollAt::Ingress) in poll_at()
|
D | udp.rs | 6 use crate::socket::PollAt; 478 pub(crate) fn poll_at(&self, _cx: &mut Context) -> PollAt { in poll_at() argument 480 PollAt::Ingress in poll_at() 482 PollAt::Now in poll_at()
|
D | raw.rs | 6 use crate::socket::PollAt; 403 pub(crate) fn poll_at(&self, _cx: &mut Context) -> PollAt { in poll_at() argument 405 PollAt::Ingress in poll_at() 407 PollAt::Now in poll_at()
|
D | icmp.rs | 8 use crate::socket::{Context, PollAt}; 577 pub(crate) fn poll_at(&self, _cx: &mut Context) -> PollAt { in poll_at() argument 579 PollAt::Ingress in poll_at() 581 PollAt::Now in poll_at()
|
D | dhcpv4.rs | 17 use super::PollAt; 267 pub(crate) fn poll_at(&self, _cx: &mut Context) -> PollAt { in poll_at() argument 273 PollAt::Time(t) in poll_at() 765 while s.socket.poll_at(&mut s.cx) <= PollAt::Time(timestamp) { in recv()
|
/smoltcp-0.9.1/src/iface/interface/ |
D | mod.rs | 808 PollAt::Ingress => None, in poll_at() 809 PollAt::Time(instant) => Some(instant), in poll_at() 810 PollAt::Now => Some(Instant::from_millis(0)), in poll_at()
|