47 + (
id)zoneWithSize:(
size_t)size;
60 - (
void *)allocWithSize:(
size_t)size;
66 - (void)free:(
void *)ptr;
size_t bytesFree()
Returns the free size of the memory zone.
void dealloc()
Deallocates the memory zone.
size_t _count
Current number of active allocations in the zone.
void dump()
Walks through the zone and outputs information about allocations.
A class for managing memory zones.
size_t bytesUsed()
Returns the used size of the memory zone.
size_t bytesTotal()
Returns the total size of the memory zone.
The base class for objects in the Foundation framework.
id defaultZone()
Returns the default memory zone.
struct objc_object * id
A pointer to an instance of a class.
size_t _size
Initial allocated size of the memory zone in bytes.