Home
last modified time | relevance | path

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

/xnu-8796.121.2/iokit/Kernel/
H A DIOService.cpp818 if (reserved->interruptStatisticsArray) { in free()
820 if (reserved->interruptStatisticsArray[i].reporter) { in free()
821 reserved->interruptStatisticsArray[i].reporter->release(); in free()
825 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in free()
8632 if (!reserved->interruptStatisticsArray) { in addInterruptStatistics()
8633 reserved->interruptStatisticsArray = IONew(IOInterruptAccountingReporter, 1); in addInterruptStatistics()
8634 assert(reserved->interruptStatisticsArray); in addInterruptStatistics()
8636 bzero(reserved->interruptStatisticsArray, sizeof(*reserved->interruptStatisticsArray)); in addInterruptStatistics()
8663 …memcpy(newArray, reserved->interruptStatisticsArray, reserved->interruptStatisticsArrayCount * siz… in addInterruptStatistics()
8664 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in addInterruptStatistics()
[all …]
/xnu-8796.121.2/iokit/IOKit/
H A DIOService.h421 IOInterruptAccountingReporter * interruptStatisticsArray; member