Home
last modified time | relevance | path

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

/DragonOS-0.1.8/kernel/src/mm/
Dno_init.rs16 page::PageFlags,
63 let mut mapper = crate::mm::page::PageMapper::<MMArch, _>::new( in pseudo_map_phys()
Ducontext.rs33 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 …]
Dkernel_mapper.rs1 use super::{page::PageFlags, PageTableKind, PhysAddr, VirtAddr};
Dc_adapter.rs19 page::PageFlags, MemoryManagementArch, PhysAddr, VirtAddr,
Dmod.rs20 page::round_up_to_page_size,
29 pub mod page; module
/DragonOS-0.1.8/kernel/src/driver/hid/
Dhidparse.c20 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/
Dmod.rs25 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/
Dlink.lds76 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/
Dlink.lds76 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/
Dlink.lds76 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/
Dlink.lds76 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/
Dlink.lds76 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/
Dvirtio_impl.rs6 use crate::mm::page::PageFlags;
/DragonOS-0.1.8/kernel/src/driver/pci/
Dpci.rs10 use crate::mm::page::PageFlags;