Home
last modified time | relevance | path

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

/xnu-10002.61.3/iokit/Kernel/
H A DIOService.cpp826 if (reserved->interruptStatisticsArray) { in free()
828 if (reserved->interruptStatisticsArray[i].reporter) { in free()
829 reserved->interruptStatisticsArray[i].reporter->release(); in free()
833 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in free()
8726 if (!reserved->interruptStatisticsArray) { in addInterruptStatistics()
8727 reserved->interruptStatisticsArray = IONew(IOInterruptAccountingReporter, 1); in addInterruptStatistics()
8728 assert(reserved->interruptStatisticsArray); in addInterruptStatistics()
8730 bzero(reserved->interruptStatisticsArray, sizeof(*reserved->interruptStatisticsArray)); in addInterruptStatistics()
8757 …memcpy(newArray, reserved->interruptStatisticsArray, reserved->interruptStatisticsArrayCount * siz… in addInterruptStatistics()
8758 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in addInterruptStatistics()
[all …]
/xnu-10002.61.3/iokit/IOKit/
H A DIOService.h423 IOInterruptAccountingReporter * interruptStatisticsArray; member