Home
last modified time | relevance | path

Searched refs:EfiTcpSocket (Results 1 – 2 of 2) sorted by relevance

/bootable/libbootloader/gbl/efi/src/
Dfastboot.rs21 use crate::net::{with_efi_network, EfiTcpSocket};
38 socket: &'c mut EfiTcpSocket<'a, 'b>,
42 fn new(socket: &'c mut EfiTcpSocket<'a, 'b>) -> Self { in new()
132 mut socket: Option<&mut EfiTcpSocket>, in fastboot_loop() argument
150 let mut listen_start_timestamp = EfiTcpSocket::timestamp(0); in fastboot_loop()
175 } else if EfiTcpSocket::timestamp(listen_start_timestamp) > DEFAULT_TIMEOUT_MS { in fastboot_loop()
182 listen_start_timestamp = EfiTcpSocket::timestamp(0); in fastboot_loop()
Dnet.rs315 pub struct EfiTcpSocket<'a, 'b> { struct
322 impl<'a, 'b> EfiTcpSocket<'a, 'b> { argument
422 F: FnMut(&mut EfiTcpSocket) -> R, in with_efi_network()
464 let mut socket = EfiTcpSocket { in with_efi_network()