Searched refs:addEventSource (Results 1 - 25 of 46) sorted by relevance

12

/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWPendingQ.cpp43 fWorkLoop->addEventSource(fPendingQ.fSource);
H A DIOFWTimeoutQ.cpp55 fWorkLoop->addEventSource( fTimer );
/macosx-10.10/xnu-2782.1.97/iokit/Tests/
H A DTestDevice.cpp65 if (!commQ || kIOReturnSuccess != workLoop->addEventSource(commQ))
70 if (!intES || kIOReturnSuccess != workLoop->addEventSource(intES))
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIOWorkLoop.h161 @abstract Synchronous implementation of addEventSource and removeEventSource functions.
224 /*! @function addEventSource
229 virtual IOReturn addEventSource(IOEventSource *newEvent);
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOCommandPool.cpp86 if (kIOReturnSuccess != inWorkLoop->addEventSource(fSerializer))
H A DIOWorkLoop.cpp159 // Point the controlGate at the workLoop. Usually addEventSource
160 // does this automatically. The problem is in this case addEventSource
163 if (addEventSource(controlG) != kIOReturnSuccess)
283 IOReturn IOWorkLoop::addEventSource(IOEventSource *newEvent) function in class:IOWorkLoop
/macosx-10.10/IOSCSIParallelFamily-300.0.2/TestTools/AppleSCSIHBAEmulator/
H A DAppleSCSIEmulatorAdapterUC.cpp157 workLoop->addEventSource ( fCommandGate );
H A DAppleSCSIEmulatorAdapter.cpp548 status = GetWorkLoop ( )->addEventSource ( fEventSource );
/macosx-10.10/PowerManagement-494.1.2/AppleSmartBatteryManager/
H A DAppleSmartBatteryManager.cpp98 wl->addEventSource(fManagerGate);
105 wl->addEventSource(gate);
/macosx-10.10/AppleUSBIrDA-145.2.4/IrDA/Utils/
H A DCTimer.cpp107 rc = work->addEventSource(fTimerSrc);
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventSystem.cpp77 if ( _workLoop->addEventSource(_commandGate) != kIOReturnSuccess )
H A DIOHIDResourceUserClient.cpp111 require_noerr_action(workLoop->addEventSource(_createDeviceTimer), exit, result=false);
115 require_noerr_action(workLoop->addEventSource(_commandGate), exit, result=false);
H A DIOHIDEventService.cpp188 if (!_keyboard.eject.timer || (_workLoop->addEventSource(_keyboard.eject.timer) != kIOReturnSuccess))
201 if (!_keyboard.caps.timer || (_workLoop->addEventSource(_keyboard.caps.timer) != kIOReturnSuccess))
209 if (!_multiAxis.timer || (_workLoop->addEventSource(_multiAxis.timer) != kIOReturnSuccess))
214 if (!_commandGate || (_workLoop->addEventSource(_commandGate) != kIOReturnSuccess))
1530 if ((_workLoop->addEventSource(_keyboard.debug.timer) != kIOReturnSuccess)) {
H A DIOHIDLibUserClient.cpp278 fWL->addEventSource(cmdGate);
288 fWL->addEventSource(fResourceES);
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIOBacklightDisplay.cpp213 if (fDeferredEvents) fb->getControllerWorkLoop()->addEventSource(fDeferredEvents);
218 if (fFadeTimer) fb->getControllerWorkLoop()->addEventSource(fFadeTimer);
H A DIOFramebuffer.cpp2788 gIOFBSystemWorkLoop->addEventSource(gIOFBWorkES);
2793 gIOFBSystemWorkLoop->addEventSource(gIOFBDelayedPrefsEvent);
2798 gIOFBSystemWorkLoop->addEventSource(gIOFBServerAckTimer);
6424 __private->controller->wl->addEventSource(__private->controller->workES);
6588 __private->controller->wl->addEventSource(__private->deferredVBLDisableEvent);
6591 __private->controller->wl->addEventSource(__private->vblUpdateTimer);
6601 __private->controller->wl->addEventSource(__private->deferredCLUTSetEvent);
6606 __private->controller->wl->addEventSource(__private->deferredCLUTSetTimerEvent);
6630 __private->controller->wl->addEventSource(__private->dpInterruptES);
6666 __private->controller->wl->addEventSource(__privat
[all...]
/macosx-10.10/IONetworkingFamily-101/
H A DIOOutputQueue.cpp815 if (!_gate || (workloop->addEventSource(_gate) != kIOReturnSuccess))
826 (workloop->addEventSource(_interruptSrc) != kIOReturnSuccess) )
/macosx-10.10/IOAudioFamily-200.6/
H A DIOAudioDevice.cpp260 workLoop->addEventSource ( reserved->idleTimer );
475 workLoop->addEventSource(commandGate);
1165 if ( !timerEventSource || !wl || ( kIOReturnSuccess != wl->addEventSource ( timerEventSource ) ) )
/macosx-10.10/IOSCSIParallelFamily-300.0.2/
H A DIOSCSIParallelInterfaceController.cpp855 status = fWorkLoop->addEventSource ( fTimerEvent );
871 status = fWorkLoop->addEventSource ( fDispatchEvent );
881 status = fWorkLoop->addEventSource ( fControllerGate );
/macosx-10.10/IOFireWireSBP2-425/IOFireWireSBP2/
H A DIOFireWireSBP2LUN.cpp169 workLoop->addEventSource( fGate );
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIKeyboardMapper.cpp2133 (_hidSystem->getWorkLoop()->addEventSource(_stickyKeysMouseClickEventSource) != kIOReturnSuccess)) {
2147 (_hidSystem->getWorkLoop()->addEventSource(_stickyKeysSetFnStateEventSource) != kIOReturnSuccess)) {
2273 if (_hidSystem->getWorkLoop()->addEventSource(_ejectTimerEventSource) != kIOReturnSuccess)
2357 if(_hidSystem->getWorkLoop()->addEventSource(_slowKeysTimerEventSource) != kIOReturnSuccess)
/macosx-10.10/IOPCIFamily-239.1.2/
H A Dvtd.c1368 if (fIntES) fWorkLoop->addEventSource(fIntES);
1374 if (fFaultES) fWorkLoop->addEventSource(fFaultES);
1381 if (fTimerES) fWorkLoop->addEventSource(fTimerES);
/macosx-10.10/AppleUSBIrDA-145.2.4/
H A DIrDAComm.cpp208 rc = workloop->addEventSource(fGate); // add it to the usb workloop
219 //rc = workloop->addEventSource(fTimerSrc);
/macosx-10.10/IOATAFamily-253.0.1/
H A DIOATAController.cpp229 if (!_timer || _workLoop->addEventSource(_timer))
239 if (!_cmdGate || _workLoop->addEventSource(_cmdGate))
/macosx-10.10/AppleRAID-4.0.6/
H A DAppleRAIDSet.cpp106 getWorkLoop()->addEventSource(arSetCommandGate);
112 getWorkLoop()->addEventSource(arSetEventSource);

Completed in 250 milliseconds

12