Home
last modified time | relevance | path

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

/xnu-12377.41.6/iokit/Kernel/
H A DIOService.cpp854 if (reserved->interruptStatisticsArray) { in free()
856 if (reserved->interruptStatisticsArray[i].reporter) { in free()
857 reserved->interruptStatisticsArray[i].reporter->release(); in free()
861 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in free()
8954 if (!reserved->interruptStatisticsArray) { in addInterruptStatistics()
8955 reserved->interruptStatisticsArray = IONew(IOInterruptAccountingReporter, 1); in addInterruptStatistics()
8956 assert(reserved->interruptStatisticsArray); in addInterruptStatistics()
8958 bzero(reserved->interruptStatisticsArray, sizeof(*reserved->interruptStatisticsArray)); in addInterruptStatistics()
8985 …memcpy(newArray, reserved->interruptStatisticsArray, reserved->interruptStatisticsArrayCount * siz… in addInterruptStatistics()
8986 …IODelete(reserved->interruptStatisticsArray, IOInterruptAccountingReporter, reserved->interruptSta… in addInterruptStatistics()
[all …]
/xnu-12377.41.6/iokit/IOKit/
H A DIOService.h427 IOInterruptAccountingReporter * interruptStatisticsArray; member