Searched refs:page (Results 1 – 14 of 14) sorted by relevance
/DragonOS-0.1.8/kernel/src/mm/ |
D | no_init.rs | 16 page::PageFlags, 63 let mut mapper = crate::mm::page::PageMapper::<MMArch, _>::new( in pseudo_map_phys()
|
D | ucontext.rs | 33 page::{Flusher, InactiveFlusher, PageFlags, PageFlushAll}, 180 for page in new_vma_guard.pages().map(|p| p.virt_address()) { in try_clone() 185 .translate(page) in try_clone() 198 .translate(page) in try_clone() 270 move |page, count, flags, mapper, flusher| { in map_anonymous() 271 Ok(VMA::zeroed(page, count, flags, mapper, flusher)?) in map_anonymous() 328 let page = VirtPageFrame::new(region.start()); in mmap() localVariable 346 page, in mmap() 353 return Ok(page); in mmap() 830 for page in guard.region.pages() { in remap() [all …]
|
D | kernel_mapper.rs | 1 use super::{page::PageFlags, PageTableKind, PhysAddr, VirtAddr};
|
D | c_adapter.rs | 19 page::PageFlags, MemoryManagementArch, PhysAddr, VirtAddr,
|
D | mod.rs | 20 page::round_up_to_page_size, 29 pub mod page; module
|
/DragonOS-0.1.8/kernel/src/driver/hid/ |
D | hidparse.c | 20 static const char *hid_get_usage_type_str(const int page, const int type); 436 static const char *hid_get_usage_type_str(const int page, const int type) in hid_get_usage_type_str() argument 438 const struct hid_usage_pages_string *upage = hid_get_usage_page(page); in hid_get_usage_type_str() 441 sprintk(__tmp_usage_page_str, "Unknown Usage Page: %#04x", page); in hid_get_usage_type_str() 446 if (page == 0x0009) in hid_get_usage_type_str() 451 else if (page == 0x000a) in hid_get_usage_type_str() 456 else if (page == 0x0010) in hid_get_usage_type_str()
|
/DragonOS-0.1.8/kernel/src/arch/x86_64/mm/ |
D | mod.rs | 25 use crate::mm::page::{PageEntry, PageFlags}; 38 crate::mm::page::PageMapper<crate::arch::x86_64::mm::X86_64MMArch, LockedFrameAllocator>; 205 let new_umapper: crate::mm::page::PageMapper<X86_64MMArch, LockedFrameAllocator> = unsafe { in setup_new_usermapper() 344 let mut mapper: crate::mm::page::PageMapper<MMArch, &mut BumpAllocator<MMArch>> = in allocator_init() 345 crate::mm::page::PageMapper::<MMArch, _>::create( in allocator_init() 408 let mapper = crate::mm::page::PageMapper::<MMArch, _>::new( in allocator_init() 592 mapper: &mut crate::mm::page::PageMapper<MMArch, &mut BumpAllocator<MMArch>>, in remap_at_low_address()
|
/DragonOS-0.1.8/user/apps/test_bind/ |
D | link.lds | 76 the same address within the page on the next page up. */ 87 the same address within the page on the next page up. */
|
/DragonOS-0.1.8/user/apps/test_fstat/ |
D | link.lds | 76 the same address within the page on the next page up. */ 87 the same address within the page on the next page up. */
|
/DragonOS-0.1.8/user/apps/test_gettimeofday/ |
D | link.lds | 76 the same address within the page on the next page up. */ 87 the same address within the page on the next page up. */
|
/DragonOS-0.1.8/user/apps/http_server/ |
D | link.lds | 76 the same address within the page on the next page up. */ 87 the same address within the page on the next page up. */
|
/DragonOS-0.1.8/user/apps/test_relibc/ |
D | link.lds | 76 the same address within the page on the next page up. */ 87 the same address within the page on the next page up. */
|
/DragonOS-0.1.8/kernel/src/driver/virtio/ |
D | virtio_impl.rs | 6 use crate::mm::page::PageFlags;
|
/DragonOS-0.1.8/kernel/src/driver/pci/ |
D | pci.rs | 10 use crate::mm::page::PageFlags;
|