MCPcopy Create free account
hub / github.com/Infinity-OS/infinity / next_table

Method next_table

src/memory/paging/table.rs:44–47  ·  view source on GitHub ↗
(&self, index: usize)

Source from the content-addressed store, hash-verified

42 }
43
44 pub fn next_table(&self, index: usize) -> Option<&Table<L::NextLevel>> {
45 self.next_table_address(index)
46 .map(|address| unsafe { &*(address as *const _) })
47 }
48
49 pub fn next_table_mut(&mut self, index: usize) -> Option<&mut Table<L::NextLevel>> {
50 self.next_table_address(index)

Callers 2

translate_pageMethod · 0.80
next_table_createMethod · 0.80

Calls 2

next_table_addressMethod · 0.80
mapMethod · 0.45

Tested by

no test coverage detected