Home
last modified time | relevance | path

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

/xnu-8019.80.24/iokit/Kernel/
H A DIOService.cpp822 if (reserved->interruptStatisticsArray) { in free()
824 if (reserved->interruptStatisticsArray[i].reporter) { in free()
825 reserved->interruptStatisticsArray[i].reporter->release(); in free()
829 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in free()
8485 if (!reserved->interruptStatisticsArray) { in addInterruptStatistics()
8486 reserved->interruptStatisticsArray = IONew(IOInterruptAccountingReporter, 1); in addInterruptStatistics()
8487 assert(reserved->interruptStatisticsArray); in addInterruptStatistics()
8489 bzero(reserved->interruptStatisticsArray, sizeof(*reserved->interruptStatisticsArray)); in addInterruptStatistics()
8516 …memcpy(newArray, reserved->interruptStatisticsArray, reserved->interruptStatisticsArrayCount * siz… in addInterruptStatistics()
8517 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in addInterruptStatistics()
[all …]
/xnu-8019.80.24/iokit/IOKit/
H A DIOService.h413 IOInterruptAccountingReporter * interruptStatisticsArray; member