Searched refs:nub (Results 1 - 25 of 52) sorted by relevance

123

/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIOInterruptController.h52 IOService * nub; member in struct:IOInterruptVector
80 virtual IOReturn registerInterrupt(IOService *nub, int source,
84 virtual IOReturn unregisterInterrupt(IOService *nub, int source);
86 virtual IOReturn getInterruptType(IOService *nub, int source,
89 virtual IOReturn enableInterrupt(IOService *nub, int source);
90 virtual IOReturn disableInterrupt(IOService *nub, int source);
91 virtual IOReturn causeInterrupt(IOService *nub, int source);
94 virtual IOReturn handleInterrupt(void *refCon, IOService *nub,
133 virtual IOReturn registerInterrupt(IOService *nub, int source,
137 virtual IOReturn unregisterInterrupt(IOService *nub, in
[all...]
H A DIOInterrupts.h56 void *nub, int source);
H A DIOInterruptEventSource.h181 @param nub Where did the interrupt originate from
182 @param ind What is this interrupts index within 'nub'. */
183 virtual void interruptOccurred(void *, IOService *nub, int ind);
187 @param nub Where did the interrupt originate from
188 @param ind What is this interrupts index within 'nub'. */
189 virtual void normalInterruptOccurred(void *, IOService *nub, int ind);
193 @param nub Where did the interrupt originate from
194 @param ind What is this interrupts index within 'nub'. */
195 virtual void disableInterruptOccurred(void *, IOService *nub, int ind);
H A DIOCPU.h137 virtual IOReturn registerInterrupt(IOService *nub, int source,
142 virtual IOReturn getInterruptType(IOService *nub, int source,
145 virtual IOReturn enableInterrupt(IOService *nub, int source);
146 virtual IOReturn disableInterrupt(IOService *nub, int source);
147 virtual IOReturn causeInterrupt(IOService *nub, int source);
149 virtual IOReturn handleInterrupt(void *refCon, IOService *nub,
H A DIODeviceTreeSupport.h59 bool IODTMatchNubWithKeys( IORegistryEntry * nub,
H A DIOPlatformExpert.h138 virtual bool compareNubName( const IOService * nub, OSString * name,
140 virtual IOReturn getNubResources( IOService * nub );
229 virtual bool compareNubName( const IOService * nub, OSString * name,
232 virtual IOReturn getNubResources( IOService * nub );
283 /* generic root nub of service tree */
313 /* generic nub for motherboard devices */
/macosx-10.10/xnu-2782.1.97/pexpert/i386/
H A Dpe_interrupt.c41 void *nub; member in struct:i386_interrupt_handler
60 DTRACE_INT5(interrupt_start, void *, vector->nub, int, 0,
65 vector->handler(vector->target, NULL, vector->nub, interrupt);
68 DTRACE_INT5(interrupt_complete, void *, vector->nub, int, 0,
74 void PE_install_interrupt_handler(void *nub, argument
86 vector->nub = nub;
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/platform/
H A DAppleMacIO.h61 virtual void processNub( IOService * nub );
68 virtual bool compareNubName( const IOService * nub, OSString * name,
71 virtual IOReturn getNubResources( IOService * nub );
H A DAppleNMI.h65 virtual IOReturn handleInterrupt(void *refCon, IOService *nub, int source);
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOInterruptController.cpp55 IOReturn IOInterruptController::registerInterrupt(IOService *nub, int source, argument
73 interruptSources = nub->_interruptSources;
83 IODTGetInterruptOptions(nub, source, &options);
87 (getInterruptType(nub, source, &interruptType) == kIOReturnSuccess) &&
116 // Save the nub and source for the original consumer.
117 originalNub = vector->nub;
170 vector->nub = vector->sharedController;
193 error = vector->sharedController->registerInterrupt(nub, source, target,
201 vector->nub = nub;
218 unregisterInterrupt(IOService *nub, int source) argument
260 getInterruptType(IOService *nub, int source, int *interruptType) argument
280 enableInterrupt(IOService *nub, int source) argument
312 disableInterrupt(IOService *nub, int source) argument
337 causeInterrupt(IOService *nub, int source) argument
359 handleInterrupt(void *refCon, IOService *nub, int source) argument
481 registerInterrupt(IOService *nub, int source, void *target, IOInterruptHandler handler, void *refCon) argument
549 unregisterInterrupt(IOService *nub, int source) argument
607 enableInterrupt(IOService *nub, int source) argument
639 disableInterrupt(IOService *nub, int source) argument
678 handleInterrupt(void * , IOService * nub, int ) argument
[all...]
H A DIOPlatformExpert.cpp152 IOService * nub; local
161 nub = createNub( dict );
162 if( 0 == nub)
165 nub->attach( this );
166 nub->registerService();
175 IOService * nub; local
177 nub = new IOPlatformDevice;
178 if(nub) {
179 if( !nub->init( from )) {
180 nub
187 compareNubName( const IOService * nub, OSString * name, OSString ** matched ) const argument
1131 IOService * nub; local
1146 IOService * nub; local
1214 compareNubName( const IOService * nub, OSString * name, OSString ** matched ) const argument
[all...]
H A DIOServicePrivate.h157 IOService * nub; member in class:_IOServiceJob
160 static _IOServiceJob * startJob( IOService * nub, int type,
/macosx-10.10/xnu-2782.1.97/iokit/Examples/drvGenericInterruptController/
H A DGenericInterruptController.h52 virtual IOReturn getInterruptType(IOService *nub, int source,
61 IOService *nub, int source);
H A DGenericInterruptController.cpp83 // interrupt controller, use this to set it nub properties properly.
84 // This may be done by the nub's creator.
104 IOReturn GenericInterruptController::getInterruptType(IOService *nub, argument
110 // Given the nub and source, set interruptType to level or edge.
123 IOService * nub,
153 vector->nub, vector->source);
122 handleInterrupt(void * refCon, IOService * nub, int source) argument
/macosx-10.10/IOPCIFamily-239.1.2/
H A DIOPCIBridge.cpp1567 IOPCIDevice * nub; local
1569 nub = OSDynamicCast( IOPCIDevice, entry );
1570 assert( nub );
1572 *busNum = nub->space.s.busNum;
1573 *deviceNum = nub->space.s.deviceNum;
1574 *functionNum = nub->space.s.functionNum;
1763 bool IOPCIBridge::initializeNub( IOPCIDevice * nub, argument
1766 spaceFromProperties( from, &nub->space);
1767 nub->parent = this;
1770 nub
1791 publishNub( IOPCIDevice * nub, UInt32 ) argument
1971 IOPCIDevice * nub = 0; local
2356 IOPCIDevice * nub = (IOPCIDevice *) service; local
2396 matchKeys( IOPCIDevice * nub, const char * keys, UInt32 defaultMask, UInt8 regNum ) argument
2427 pciMatchNub( IOPCIDevice * nub, OSDictionary * table, SInt32 * score ) argument
2479 matchNubWithPropertyTable( IOService * nub, OSDictionary * table, SInt32 * score ) argument
2521 compareNubName( const IOService * nub, OSString * name, OSString ** matched ) const argument
3399 publishNub( IOPCIDevice * nub, UInt32 index ) argument
[all...]
H A DIOPCIMessagedInterruptController.cpp63 interruptSources = nub->_interruptSources; \
75 IOReturn IOPCIMessagedInterruptController::registerInterrupt(IOService *nub, int source, argument
93 vector->nub = nub;
108 IOPCIDevice * device = OSDynamicCast(IOPCIDevice, nub);
114 IOReturn IOPCIMessagedInterruptController::unregisterInterrupt(IOService *nub, int source) argument
129 disableInterrupt(nub, source);
139 vector->nub = 0;
147 IOPCIDevice * device = OSDynamicCast(IOPCIDevice, nub);
153 IOReturn IOPCIMessagedInterruptController::getInterruptType(IOService *nub, in argument
165 enableInterrupt(IOService *nub, int source) argument
189 disableInterrupt(IOService *nub, int source) argument
696 handleInterrupt( void * state, IOService * nub, int source) argument
[all...]
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFireWireLocalNode.cpp290 IOFireWireMagicMatchingNub *nub = NULL; local
346 // See if this matching nub's child is of the IODesiredChild class
374 nub = OSTypeAlloc( IOFireWireMagicMatchingNub );
375 if(!nub->init(summon))
377 if (!nub->attach(this))
379 nub->registerService(kIOServiceSynchronous);
380 // Kill nub if nothing matched
381 if(!nub->getClient()) {
382 nub->detach(this);
386 if(nub)
[all...]
H A DIOFireWireNub.h89 virtual UInt32 hopCount( IOFireWireNub * nub );
195 // Set maximum packet size nub can handle
228 * Get Config directory for nub
229 * Device nub directory is root directory, Unit nub directory is Unit directory.
238 * Get bus for nub
247 * Standard nub initialization
259 inline UInt32 hopCount( IOFireWireNub * nub )
260 { return fAuxiliary->hopCount( nub ); }
/macosx-10.10/AppleUSBIrDA-145.2.4/
H A DAppleIrDA.cpp16 AppleIrDA::withNub(AppleIrDASerial *nub) argument
29 obj->fNub = nub;
64 // Attach client to our nub.
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDInterface.cpp87 IOHIDInterface * nub = new IOHIDInterface; local
89 if ((nub == 0) || !nub->init() || !elements)
91 if (nub) nub->release();
95 nub->_elementArray = elements;
96 nub->_elementArray->retain();
98 return nub;
H A DIOHIDPointing.cpp51 IOHIDPointing *nub = new IOHIDPointing; local
53 if ((nub == 0) || !nub->initWithMouseProperties(buttonCount, pointerResolution, scrollResolution, isDispatcher) )
55 if (nub) nub->release();
59 return nub;
/macosx-10.10/IOPCIFamily-239.1.2/IOKit/pci/
H A DIOPCIBridge.h68 virtual bool isDTNub( IOPCIDevice * nub );
81 IOReturn resolveLegacyInterrupts( IOService * provider, IOPCIDevice * nub );
82 IOReturn resolveMSIInterrupts ( IOService * provider, IOPCIDevice * nub );
142 virtual bool initializeNub( IOPCIDevice * nub, OSDictionary * from );
144 virtual bool publishNub( IOPCIDevice * nub, UInt32 index );
157 virtual bool matchNubWithPropertyTable( IOService * nub,
161 virtual bool compareNubName( const IOService * nub, OSString * name,
164 virtual bool pciMatchNub( IOPCIDevice * nub,
167 virtual bool matchKeys( IOPCIDevice * nub, const char * keys,
170 virtual IOReturn getNubResources( IOService * nub );
[all...]
H A DIOPCIPrivate.h309 virtual IOReturn registerInterrupt(IOService *nub, int source,
313 virtual IOReturn unregisterInterrupt(IOService *nub, int source);
315 virtual IOReturn getInterruptType(IOService *nub, int source,
318 virtual IOReturn enableInterrupt(IOService *nub, int source);
319 virtual IOReturn disableInterrupt(IOService *nub, int source);
321 virtual IOReturn handleInterrupt(void *refCon, IOService *nub,
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOBSDConsole.cpp104 void IOBSDConsole::arbitrateForKeyboard( IOHIKeyboard * nub )
106 nub->open(this, 0, 0,
/macosx-10.10/IOATAFamily-253.0.1/
H A DATADeviceNub.cpp102 ATADeviceNub* nub = new ATADeviceNub; local
104 if( ! nub )
107 if( !nub->init( provider, unit, devType) )
109 nub->release();
112 return nub;

Completed in 352 milliseconds

123