Searched refs:interruptType (Results 1 - 9 of 9) sorted by relevance

/darwin-on-arm/xnu/iokit/Examples/drvGenericInterruptController/
H A DGenericInterruptController.h53 int *interruptType);
H A DGenericInterruptController.cpp106 int *interruptType)
108 if (interruptType == 0) return kIOReturnBadArgument;
110 // Given the nub and source, set interruptType to level or edge.
104 getInterruptType(IOService *nub, int source, int *interruptType) argument
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOInterruptController.h87 int *interruptType);
140 int *interruptType);
H A DIOCPU.h142 int *interruptType);
H A DIOService.h1054 @param interruptType The interrupt type for the interrupt source will be stored here by <code>getInterruptType</code>.<br> <code>kIOInterruptTypeEdge</code> will be returned for edge-trigggered sources.<br><code>kIOInterruptTypeLevel</code> will be returned for level-trigggered sources.
1057 virtual IOReturn getInterruptType(int source, int *interruptType);
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOInterruptController.cpp84 int interruptType; local
86 (getInterruptType(nub, source, &interruptType) == kIOReturnSuccess) &&
87 (kIOInterruptTypeLevel & interruptType))
260 int *interruptType)
267 if (interruptType == 0) return kIOReturnBadArgument;
274 *interruptType = getVectorType(vectorNumber, vector);
412 int cnt, interruptType; local
433 error = provider->getInterruptType(0, &interruptType);
435 if (interruptType & kIOInterruptTypeLevel)
593 int *interruptType)
259 getInterruptType(IOService *nub, int source, int *interruptType) argument
591 getInterruptType(IOService * , int , int *interruptType) argument
[all...]
H A DIOCPU.cpp741 int *interruptType)
743 if (interruptType == 0) return kIOReturnBadArgument;
745 *interruptType = kIOInterruptTypeLevel;
739 getInterruptType(IOService * , int , int *interruptType) argument
H A DIOService.cpp5453 IOReturn IOService::getInterruptType(int source, int *interruptType) argument
5462 return interruptController->getInterruptType(this, source, interruptType);
/darwin-on-arm/xnu/iokit/Drivers/KernelBuiltIn/ARM/AppleARMPlatform/
H A DIOCPU.h137 virtual IOReturn getInterruptType(IOService * nub, int source, int *interruptType);

Completed in 34 milliseconds