Home
last modified time | relevance | path

Searched refs:F (Results 1 – 9 of 9) sorted by relevance

/DragonOS-0.1.9/kernel/src/libs/
Donce.rs29 pub fn call_once<F: FnOnce()>(&self, f: F) { in call_once() argument
94 pub fn call_once_force<F>(&self, f: F) in call_once_force()
96 F: FnOnce(&OnceState), in call_once_force()
Dwait_queue.rs45 pub fn sleep_with_func<F>(&self, f: F) in sleep_with_func()
47 F: FnOnce(), in sleep_with_func()
/DragonOS-0.1.9/kernel/src/driver/net/e1000e/
De1000e_driver.rs75 fn consume<R, F>(mut self, f: F) -> R in consume()
77 F: FnOnce(&mut [u8]) -> R, in consume()
86 fn consume<R, F>(self, _len: usize, f: F) -> R in consume()
88 F: FnOnce(&mut [u8]) -> R, in consume()
/DragonOS-0.1.9/kernel/src/mm/
Dpage.rs505 pub struct PageMapper<Arch, F> {
511 frame_allocator: F,
515 impl<Arch: MemoryManagementArch, F: FrameAllocator> PageMapper<Arch, F> {
526 pub unsafe fn new(table_kind: PageTableKind, table_paddr: PhysAddr, allocator: F) -> Self { in new()
536 pub unsafe fn create(table_kind: PageTableKind, mut allocator: F) -> Option<Self> { in create()
546 pub unsafe fn current(table_kind: PageTableKind, allocator: F) -> Self { in current()
575 pub fn allocator_ref(&self) -> &F { in allocator_ref() argument
581 pub fn allocator_mut(&mut self) -> &mut F { in allocator_mut() argument
832 impl<Arch, F: Debug> Debug for PageMapper<Arch, F> {
Ducontext.rs315 F: FnOnce( in mmap()
328 map_func: F, in mmap() argument
/DragonOS-0.1.9/kernel/src/driver/net/
Dvirtio_net.rs216 fn consume<R, F>(self, len: usize, f: F) -> R in consume()
218 F: FnOnce(&mut [u8]) -> R, in consume()
231 fn consume<R, F>(self, f: F) -> R in consume()
233 F: FnOnce(&mut [u8]) -> R, in consume()
/DragonOS-0.1.9/
DREADME.md5 …/img.shields.io/badge/%E5%AE%98%E7%BD%91-DragonOS.org-4c69e4?link=https%3A%2F%2Fbbs.dragonos.org.c…
6 …"https://img.shields.io/badge/BBS-bbs.dragonos.org.cn-purple?link=https%3A%2F%2Fbbs.dragonos.org.c…
DREADME_EN.md5 …/img.shields.io/badge/%E5%AE%98%E7%BD%91-DragonOS.org-4c69e4?link=https%3A%2F%2Fbbs.dragonos.org.c…
6 …"https://img.shields.io/badge/BBS-bbs.dragonos.org.cn-purple?link=https%3A%2F%2Fbbs.dragonos.org.c…
/DragonOS-0.1.9/kernel/src/libs/lib_ui/
Dtextui.rs972 impl<F> GlyphMapping for F implementation
974 F: Sync + Fn(char) -> usize,