(self, kb)
| 268 | |
| 269 | class PhysicalMemory: |
| 270 | def __init__(self, kb): |
| 271 | self.__kb = kb |
| 272 | |
| 273 | def alloc_physical_memory(self, lowest_acceptable, highest_acceptable, boundary_multiple, size, caching_type): |
| 274 | ptr = c_uint64() |
nothing calls this directly
no outgoing calls
no test coverage detected