Home
last modified time | relevance | path

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

/DragonOS/kernel/src/mm/
H A Dpage.rs662 if let Some(next_table) = self.next_level_table(i) { in clone()
663 let table = next_table.clone(allocator, copy_on_write)?; in clone()
1235 let next_table = table.next_level_table(i); in map_phys() localVariable
1236 if let Some(next_table) = next_table { in map_phys()
1237 table = next_table; in map_phys()
1277 let next_table = table.next_level_table(i); in map_huge_page() localVariable
1278 if let Some(next_table) = next_table { in map_huge_page()
1279 table = next_table; in map_huge_page()
1418 if let Some(next_table) = old_table.next_level_table(entry_index) { in clone_user_mapping()
1419 let table = next_table.clone(allocator, copy_on_write).unwrap(); in clone_user_mapping()