Searched refs:interruptRef (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/IOGraphics-485/IONDRVSupport/IOKit/ndrvsupport/
H A DIONDRVFramebuffer.h320 void ** interruptRef );
321 virtual IOReturn unregisterInterrupt( void * interruptRef );
322 virtual IOReturn setInterruptState( void * interruptRef, UInt32 state );
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/IOKit/graphics/
H A DIOFramebuffer.h799 @param interruptRef The subclass should return an opaque reference to the installed interrupt handler, for use with unregisterInterrupt() and setInterruptState().
805 void ** interruptRef );
810 @param interruptRef The interruptRef returned from the registerForInterruptType call that installed the interrupt.
814 virtual IOReturn unregisterInterrupt( void * interruptRef );
823 virtual IOReturn setInterruptState( void * interruptRef, UInt32 state );
/macosx-10.10/IOGraphics-485/IONDRVSupport/
H A DIONDRVFramebuffer.cpp776 void ** interruptRef )
800 *interruptRef = service;
806 err = super::registerForInterruptType(interruptType, proc, target, ref, interruptRef);
812 IOReturn IONDRVFramebuffer::unregisterInterrupt( void * interruptRef )
818 service && (service != interruptRef);
829 err = super::unregisterInterrupt(interruptRef);
835 IOReturn IONDRVFramebuffer::setInterruptState( void * interruptRef, argument
842 service && (service != interruptRef);
852 err = super::setInterruptState(interruptRef, state);
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIOFramebuffer.cpp8936 void ** interruptRef )
8946 *interruptRef = &__private->interruptRegisters[interruptType];
8951 IOReturn IOFramebuffer::unregisterInterrupt(void * interruptRef) argument
8956 index = ((IOFBInterruptRegister *) interruptRef) - &__private->interruptRegisters[0];
8957 if (interruptRef == &__private->interruptRegisters[index])
8970 IOReturn IOFramebuffer::setInterruptState(void * interruptRef, UInt32 state) argument
8975 index = ((IOFBInterruptRegister *) interruptRef) - &__private->interruptRegisters[0];
8976 if (interruptRef == &__private->interruptRegisters[index])

Completed in 195 milliseconds