Home
last modified time | relevance | path

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

/xnu-8792.81.2/iokit/Kernel/
H A DIOService.cpp847 if (reserved->interruptStatisticsArray) { in free()
849 if (reserved->interruptStatisticsArray[i].reporter) { in free()
850 reserved->interruptStatisticsArray[i].reporter->release(); in free()
854 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in free()
8634 if (!reserved->interruptStatisticsArray) { in addInterruptStatistics()
8635 reserved->interruptStatisticsArray = IONew(IOInterruptAccountingReporter, 1); in addInterruptStatistics()
8636 assert(reserved->interruptStatisticsArray); in addInterruptStatistics()
8638 bzero(reserved->interruptStatisticsArray, sizeof(*reserved->interruptStatisticsArray)); in addInterruptStatistics()
8665 …memcpy(newArray, reserved->interruptStatisticsArray, reserved->interruptStatisticsArrayCount * siz… in addInterruptStatistics()
8666 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in addInterruptStatistics()
[all …]
/xnu-8792.81.2/iokit/IOKit/
H A DIOService.h419 IOInterruptAccountingReporter * interruptStatisticsArray; member