Home
last modified time | relevance | path

Searched refs:registerInterrupt (Results 1 – 12 of 12) sorted by relevance

/xnu-11215/iokit/IOKit/
H A DIOInterruptController.h80 virtual IOReturn registerInterrupt(IOService *nub, int source,
147 virtual IOReturn registerInterrupt(IOService *nub, int source,
H A DPassthruInterruptController.h56 virtual IOReturn registerInterrupt(IOService *nub, int source,
H A DIOCPU.h132 virtual IOReturn registerInterrupt(IOService *nub, int source,
H A DIOService.h1378 virtual IOReturn registerInterrupt(int source, OSObject *target,
/xnu-11215/iokit/Kernel/arm/
H A DAppleARMSMP.cpp134 if (cpu->registerInterrupt(0, NULL, (IOInterruptAction)ipi_handler, NULL) != kIOReturnSuccess || in register_aic_handlers()
136 cpu->registerInterrupt(2, NULL, (IOInterruptAction)ipi_handler, NULL) != kIOReturnSuccess || in register_aic_handlers()
149 …if (cpu->registerInterrupt(1, NULL, (IOInterruptAction)(void (*)(void))pmi_handler, NULL) != kIORe… in register_aic_handlers()
/xnu-11215/iokit/Kernel/
H A DIOInterruptController.cpp56 IOInterruptController::registerInterrupt(IOService *nub, int source, in registerInterrupt() function in IOInterruptController
143 error = vector->sharedController->registerInterrupt(originalNub, in registerInterrupt()
204 error = vector->sharedController->registerInterrupt(nub, source, target, in registerInterrupt()
594 IOSharedInterruptController::registerInterrupt(IOService *nub, in registerInterrupt() function in IOSharedInterruptController
H A DPassthruInterruptController.cpp83 PassthruInterruptController::registerInterrupt(IOService *nub, in registerInterrupt() function in PassthruInterruptController
H A DIOCPU.cpp223 …targetCPU->getProvider()->registerInterrupt(1, targetCPU, (IOInterruptAction)(void (*)(void))pmi_h… in PE_cpu_perfmon_interrupt_enable()
699 IOCPUInterruptController::registerInterrupt(IOService *nub, in registerInterrupt() function in IOCPUInterruptController
H A DIOInterruptEventSource.cpp153 ret = provider->registerInterrupt(inIntIndex, this, intHandler); in registerInterruptHandler()
H A DIOService.cpp8696 IOService::registerInterrupt(int source, OSObject *target, in registerInterrupt() function in IOService
8709 return interruptController->registerInterrupt(this, source, target, in registerInterrupt()
8733 ret = registerInterrupt(source, target, &IOServiceInterruptActionToBlock, block); in registerInterruptBlock()
H A DIOUserServer.cpp1535 ret = provider->registerInterrupt(index, inst, IOInterruptDispatchSourceInterrupt, inst->ivars); in Create_Impl()
/xnu-11215/iokit/Examples/drvGenericInterruptController/
H A DGenericInterruptController.cpp94 provider->registerInterrupt(0, this, handler, 0); in start()