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

/macosx-10.10/xnu-2782.1.97/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
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIOInterruptController.h87 int *interruptType);
140 int *interruptType);
H A DIOCPU.h143 int *interruptType);
H A DIOService.h1124 @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.
1127 virtual IOReturn getInterruptType(int source, int *interruptType);
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOInterruptController.cpp85 int interruptType; local
87 (getInterruptType(nub, source, &interruptType) == kIOReturnSuccess) &&
88 (kIOInterruptTypeLevel & interruptType))
261 int *interruptType)
268 if (interruptType == 0) return kIOReturnBadArgument;
275 *interruptType = getVectorType(vectorNumber, vector);
419 int cnt, interruptType; local
442 error = provider->getInterruptType(0, &interruptType);
444 if (interruptType & kIOInterruptTypeLevel)
602 int *interruptType)
260 getInterruptType(IOService *nub, int source, int *interruptType) argument
600 getInterruptType(IOService * , int , int *interruptType) argument
[all...]
H A DIOCPU.cpp785 int *interruptType)
787 if (interruptType == 0) return kIOReturnBadArgument;
789 *interruptType = kIOInterruptTypeLevel;
783 getInterruptType(IOService * , int , int *interruptType) argument
H A DIOService.cpp5983 IOReturn IOService::getInterruptType(int source, int *interruptType) argument
5992 return interruptController->getInterruptType(this, source, interruptType);
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIOFramebufferUserClient.cpp82 UInt32 interruptType, semaphore_t * semaphore )
84 return (owner->getNotificationSemaphore(interruptType, semaphore));
309 UInt32 interruptType, semaphore_t * semaphore )
311 return (owner->getNotificationSemaphore(interruptType, semaphore));
81 getNotificationSemaphore( UInt32 interruptType, semaphore_t * semaphore ) argument
308 getNotificationSemaphore( UInt32 interruptType, semaphore_t * semaphore ) argument
H A DIOFramebufferUserClient.h53 virtual IOReturn getNotificationSemaphore( UInt32 interruptType,
H A DIOFramebuffer.cpp3325 IOSelect interruptType, semaphore_t * semaphore )
3330 if (interruptType != kIOFBVBLInterruptType)
8934 IOReturn IOFramebuffer::registerForInterruptType( IOSelect interruptType, argument
8938 if ((interruptType != kIOFBMCCSInterruptType) || !__private->dpInterrupts)
8941 interruptType = kIOFBMCCSInterruptRegister;
8942 __private->interruptRegisters[interruptType].handler = proc;
8943 __private->interruptRegisters[interruptType].target = target;
8944 __private->interruptRegisters[interruptType].ref = ref;
8945 __private->interruptRegisters[interruptType].state = true;
8946 *interruptRef = &__private->interruptRegisters[interruptType];
3324 getNotificationSemaphore( IOSelect interruptType, semaphore_t * semaphore ) argument
[all...]
/macosx-10.10/IOPCIFamily-239.1.2/
H A DIOPCIMessagedInterruptController.cpp154 int *interruptType)
156 if (interruptType == 0) return (kIOReturnBadArgument);
160 *interruptType = getVectorType(vectorNumber, vector);
153 getInterruptType(IOService *nub, int source, int *interruptType) argument
H A DIOPCIBridge.cpp3059 int interruptType; local
3063 ret = fBridgeDevice->getInterruptType(intIdx, &interruptType);
3066 fBridgeMSI = (0 != (kIOInterruptTypePCIMessaged & interruptType));
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/IOKit/graphics/
H A DIOFramebuffer.h793 @param interruptType One of these constants:<br>
803 virtual IOReturn registerForInterruptType( IOSelect interruptType,
825 virtual IOReturn getNotificationSemaphore( IOSelect interruptType,
/macosx-10.10/IOGraphics-485/IONDRVSupport/IOKit/ndrvsupport/
H A DIONDRVFramebuffer.h318 virtual IOReturn registerForInterruptType( IOSelect interruptType,
/macosx-10.10/IOPCIFamily-239.1.2/IOKit/pci/
H A DIOPCIPrivate.h316 int *interruptType);
/macosx-10.10/IOGraphics-485/IONDRVSupport/
H A DIONDRVFramebuffer.cpp774 IOReturn IONDRVFramebuffer::registerForInterruptType( IOSelect interruptType, argument
782 if ((interruptType == kIOFBVBLInterruptType)
787 service && (service->type != interruptType);
806 err = super::registerForInterruptType(interruptType, proc, target, ref, interruptRef);
/macosx-10.10/IOKitUser-1050.1.21/graphics.subproj/
H A DIOGraphicsLib.c4883 IOSelect interruptType,
4886 uint64_t inData = interruptType;
4882 IOFBGetInterruptSemaphore( io_connect_t connect, IOSelect interruptType, semaphore_t * semaphore ) argument

Completed in 326 milliseconds