Home
last modified time | relevance | path

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

/xnu-8020.121.3/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()
8486 if (!reserved->interruptStatisticsArray) { in addInterruptStatistics()
8487 reserved->interruptStatisticsArray = IONew(IOInterruptAccountingReporter, 1); in addInterruptStatistics()
8488 assert(reserved->interruptStatisticsArray); in addInterruptStatistics()
8490 bzero(reserved->interruptStatisticsArray, sizeof(*reserved->interruptStatisticsArray)); in addInterruptStatistics()
8517 …memcpy(newArray, reserved->interruptStatisticsArray, reserved->interruptStatisticsArrayCount * siz… in addInterruptStatistics()
8518 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in addInterruptStatistics()
[all …]
/xnu-8020.121.3/iokit/IOKit/
H A DIOService.h413 IOInterruptAccountingReporter * interruptStatisticsArray; member