Searched refs:cur_phys (Results 1 – 2 of 2) sorted by relevance
166 let mut cur_phys = PhysPageFrame::new(phys_page.0); in add() localVariable168 let page = Arc::new(Page::new(true, cur_phys.phys_address())); in add()170 let paddr = cur_phys.phys_address(); in add()172 cur_phys = cur_phys.next(); in add()317 let mut cur_phys = PhysPageFrame::new(kernel_shm.shm_start_paddr); in ipc_rmid() localVariable327 let page = page_manager_guard.get_unwrap(&cur_phys.phys_address()); in ipc_rmid()330 cur_phys = cur_phys.next(); in ipc_rmid()338 let paddr = cur_phys.phys_address(); in ipc_rmid()344 cur_phys = cur_phys.next(); in ipc_rmid()441 let mut cur_phys = PhysPageFrame::new(self.shm_start_paddr); in map_count() localVariable[all …]
238 let mut cur_phys = PhysPageFrame::new(phy_addr); in do_mmap() localVariable240 let page = Arc::new(Page::new(true, cur_phys.phys_address())); in do_mmap()241 let paddr = cur_phys.phys_address(); in do_mmap()244 cur_phys = cur_phys.next(); in do_mmap()268 let mut cur_phys = PhysPageFrame::new(phy_addr); in drop() localVariable270 page_manager_guard.remove_page(&cur_phys.phys_address()); in drop()271 cur_phys = cur_phys.next(); in drop()