Searched defs:AllocationError (Results 1 – 5 of 5) sorted by relevance
/DragonOS/kernel/crates/rust-slabmalloc/src/ |
H A D | lib.rs | 54 pub enum AllocationError { enum 67 fn allocate(&mut self, layout: Layout) -> Result<NonNull<u8>, AllocationError>; in allocate() argument 73 ) -> Result<(), AllocationError>; in deallocate() argument 83 ) -> Result<(), AllocationError>; in refill() argument
|
H A D | zone.rs | 159 fn allocate(&mut self, layout: Layout) -> Result<NonNull<u8>, AllocationError> { in allocate() argument 178 ) -> Result<(), AllocationError> { in deallocate() argument 193 ) -> Result<(), AllocationError> { in refill() argument
|
H A D | sc.rs | 262 pub fn allocate(&mut self, layout: Layout) -> Result<NonNull<u8>, AllocationError> { in allocate() argument 322 ) -> Result<(), AllocationError> { in deallocate() argument
|
H A D | pages.rs | 239 fn deallocate(&self, ptr: NonNull<u8>, layout: Layout) -> Result<(), AllocationError> { in deallocate() argument
|
/DragonOS/kernel/src/mm/allocator/ |
H A D | slab.rs | 56 ) -> Result<(), AllocationError> { in deallocate() argument
|