Home
last modified time | relevance | path

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

/xnu-10063.101.15/iokit/Kernel/
H A DIOService.cpp835 if (reserved->interruptStatisticsArray) { in free()
837 if (reserved->interruptStatisticsArray[i].reporter) { in free()
838 reserved->interruptStatisticsArray[i].reporter->release(); in free()
842 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in free()
8737 if (!reserved->interruptStatisticsArray) { in addInterruptStatistics()
8738 reserved->interruptStatisticsArray = IONew(IOInterruptAccountingReporter, 1); in addInterruptStatistics()
8739 assert(reserved->interruptStatisticsArray); in addInterruptStatistics()
8741 bzero(reserved->interruptStatisticsArray, sizeof(*reserved->interruptStatisticsArray)); in addInterruptStatistics()
8768 …memcpy(newArray, reserved->interruptStatisticsArray, reserved->interruptStatisticsArrayCount * siz… in addInterruptStatistics()
8769 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in addInterruptStatistics()
[all …]
/xnu-10063.101.15/iokit/IOKit/
H A DIOService.h427 IOInterruptAccountingReporter * interruptStatisticsArray; member