Home
last modified time | relevance | path

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

/DragonOS/kernel/crates/klog_types/src/
H A Dlib.rs121 Alloc(AllocLogItem),
122 AllocZeroed(AllocLogItem),
123 Free(AllocLogItem),
124 LazyAlloc(AllocLogItem),
129 pub struct AllocLogItem { struct
135 impl AllocLogItem { argument
145 impl Debug for AllocLogItem { implementation
/DragonOS/kernel/src/mm/allocator/
H A Dkernel_allocator.rs1 use klog_types::{AllocLogItem, LogSource};
145 klog_types::AllocatorLogType::Alloc(AllocLogItem::new(layout, Some(ptr as usize), None)), in alloc_debug_log()
152 klog_types::AllocatorLogType::Free(AllocLogItem::new(layout, Some(ptr as usize), None)), in dealloc_debug_log()
/DragonOS/kernel/src/mm/
H A Dfault.rs248 klog_types::AllocatorLogType::LazyAlloc(klog_types::AllocLogItem::new( in do_anonymous_page()