Home
last modified time | relevance | path

Searched refs:memoryCounters (Results 1 – 2 of 2) sorted by relevance

/xnu-11215/iokit/Kernel/
H A DIOStatistics.cpp903 stats->allocatedSize = ke->memoryCounters[kIOStatisticsMalloc]; in copyMemoryStatistics()
904 stats->freedSize = ke->memoryCounters[kIOStatisticsFree]; in copyMemoryStatistics()
905 stats->allocatedAlignedSize = ke->memoryCounters[kIOStatisticsMallocAligned]; in copyMemoryStatistics()
906 stats->freedAlignedSize = ke->memoryCounters[kIOStatisticsFreeAligned]; in copyMemoryStatistics()
907 stats->allocatedContiguousSize = ke->memoryCounters[kIOStatisticsMallocContiguous]; in copyMemoryStatistics()
908 stats->freedContiguousSize = ke->memoryCounters[kIOStatisticsFreeContiguous]; in copyMemoryStatistics()
909 stats->allocatedPageableSize = ke->memoryCounters[kIOStatisticsMallocPageable]; in copyMemoryStatistics()
910 stats->freedPageableSize = ke->memoryCounters[kIOStatisticsFreePageable]; in copyMemoryStatistics()
1307 OSAddAtomic((SInt32) size, &ke->memoryCounters[index]); in countAlloc()
/xnu-11215/iokit/IOKit/
H A DIOStatisticsPrivate.h102 uint32_t memoryCounters[kIOStatisticsAllocCount]; member