(&self, ptr: *mut u8, layout: std::alloc::Layout)
| 45 | } |
| 46 | |
| 47 | unsafe fn dealloc(&self, ptr: *mut u8, layout: std::alloc::Layout) { |
| 48 | System.dealloc(ptr, layout) |
| 49 | } |
| 50 | |
| 51 | unsafe fn alloc_zeroed(&self, layout: std::alloc::Layout) -> *mut u8 { |
| 52 | let ptr = System.alloc_zeroed(layout); |
nothing calls this directly
no outgoing calls
no test coverage detected