Searched refs:forClient (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIOFireWireLocalNode.h121 virtual void handleClose( IOService * forClient,
123 virtual bool handleOpen( IOService * forClient,
126 virtual bool handleIsOpen( const IOService * forClient ) const;
H A DIOFireWireLocalNode.cpp242 bool IOFireWireLocalNode::handleOpen( IOService * forClient, argument
253 fOpenClients->setObject( forClient );
263 void IOFireWireLocalNode::handleClose( IOService * forClient, argument
266 if( fOpenClients->containsObject( forClient ) )
268 fOpenClients->removeObject( forClient );
279 bool IOFireWireLocalNode::handleIsOpen( const IOService * forClient ) const
281 return fOpenClients->containsObject( forClient );
H A DIOFireWireUnit.h130 virtual bool handleOpen( IOService * forClient,
134 virtual void handleClose( IOService * forClient,
H A DIOFireWireDevice.h162 virtual bool handleOpen( IOService * forClient, IOOptionBits options, void * arg );
164 virtual void handleClose( IOService * forClient, IOOptionBits options );
166 virtual bool handleIsOpen( const IOService * forClient ) const;
H A DIOFireWireUnit.cpp299 bool IOFireWireUnit::handleOpen( IOService * forClient, argument
319 success = IOFireWireNub::handleOpen( forClient, options, arg );
329 void IOFireWireUnit::handleClose( IOService * forClient, argument
338 IOFireWireNub::handleClose(forClient, options);
H A DIOFireWireDevice.cpp1880 bool IOFireWireDevice::handleOpen( IOService * forClient, IOOptionBits options, void * arg ) argument
1886 IOFireWireUnit * unitClient = OSDynamicCast( IOFireWireUnit, forClient );
1894 if( !open_set->containsObject( forClient ) )
1903 open_set->setObject( forClient );
1917 ok = IOService::handleOpen( forClient, options, arg );
1936 void IOFireWireDevice::handleClose( IOService * forClient, IOOptionBits options ) argument
1940 IOFireWireUnit * unitClient = OSDynamicCast( IOFireWireUnit, forClient );
1944 if( open_set->containsObject( forClient ) )
1946 open_set->removeObject( forClient );
1971 IOService::handleClose( forClient, option
[all...]
/macosx-10.9.5/IOFireWireSBP2-426.4.1/IOFireWireSBP2/
H A DIOFireWireSBP2Target.h129 @param forClient Designates the client of the provider requesting the open.
133 virtual bool handleOpen( IOService * forClient, IOOptionBits options, void * arg );
139 @param forClient Designates the client of the provider requesting the close.
143 virtual void handleClose( IOService * forClient, IOOptionBits options );
149 @param forClient If non-zero, isOpen returns the open state for that client. If zero is passed, isOpen returns the open state for all clients.
153 virtual bool handleIsOpen( const IOService * forClient ) const;
H A DIOFireWireSBP2LUN.h94 @param forClient Designates the client of the provider requesting the open.
98 virtual bool handleOpen( IOService * forClient,
105 @param forClient Designates the client of the provider requesting the close.
109 virtual void handleClose( IOService * forClient,
H A DIOFireWireSBP2LUN.cpp285 bool IOFireWireSBP2LUN::handleOpen( IOService * forClient, IOOptionBits options, void * arg ) argument
295 ok = IOService::handleOpen(forClient, options, arg);
301 void IOFireWireSBP2LUN::handleClose( IOService * forClient, IOOptionBits options ) argument
305 if( isOpen( forClient ) )
307 IOService::handleClose(forClient, options);
H A DIOFireWireSBP2Target.cpp313 bool IOFireWireSBP2Target::handleOpen( IOService * forClient, IOOptionBits options, void * arg ) argument
319 IOFireWireSBP2LUN * lunClient = OSDynamicCast( IOFireWireSBP2LUN, forClient );
356 ok = IOService::handleOpen( forClient, options, arg );
369 void IOFireWireSBP2Target::handleClose( IOService * forClient, IOOptionBits options ) argument
373 IOFireWireSBP2LUN * lunClient = OSDynamicCast( IOFireWireSBP2LUN, forClient );
393 IOService::handleClose(forClient, options);
409 bool IOFireWireSBP2Target::handleIsOpen( const IOService * forClient ) const
415 IOFireWireSBP2LUN * lunClient = OSDynamicCast( IOFireWireSBP2LUN, forClient );
423 return IOService::handleIsOpen( forClient );
/macosx-10.9.5/IONetworkingFamily-100/
H A DIOKernelDebugger.h292 @param forClient The client (IOKDP) requesting the open.
298 virtual bool handleOpen( IOService * forClient,
306 @param forClient The client (IOKDP) requesting the close.
310 virtual void handleClose( IOService * forClient,
321 virtual bool handleIsOpen( const IOService * forClient ) const;
H A DIOKernelDebugger.cpp723 bool IOKernelDebugger::handleOpen( IOService * forClient, argument
773 _client = forClient;
791 void IOKernelDebugger::handleClose( IOService * forClient, argument
794 if ( _target && _client && ( _client == forClient ) )
817 bool IOKernelDebugger::handleIsOpen( const IOService * forClient ) const
819 if ( forClient == 0 )
820 return ( forClient != _client );
822 return ( forClient == _client );
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/IOKit/hidsystem/
H A DIOHIDevice.h56 virtual bool open( IOService * forClient,
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/
H A DIOHIDevice.cpp89 bool IOHIDevice::open(IOService * forClient, argument
93 if(forClient == this) return true;
95 return super::open(forClient, options, arg);
/macosx-10.9.5/IOFireWireAVC-422.4.0/IOFireWireAVC/
H A DIOFireWireAVCUnit.h217 @param forClient Designates the client of the provider requesting the open.
222 virtual bool handleOpen( IOService * forClient,
229 @param forClient Designates the client of the provider requesting the close.
233 virtual void handleClose( IOService * forClient,
334 @param forClient Designates the client of the provider requesting the open.
339 virtual bool handleOpen( IOService * forClient,
346 @param forClient Designates the client of the provider requesting the close.
350 virtual void handleClose( IOService * forClient,
H A DIOFireWireAVCUnit.cpp1411 bool IOFireWireAVCUnit::handleOpen( IOService * forClient, IOOptionBits options, void * arg ) argument
1421 ok = IOService::handleOpen(forClient, options, arg);
1430 void IOFireWireAVCUnit::handleClose( IOService * forClient, IOOptionBits options ) argument
1434 if( isOpen( forClient ) )
1436 IOService::handleClose(forClient, options);
1647 bool IOFireWireAVCSubUnit::handleOpen( IOService * forClient, IOOptionBits options, void * arg ) argument
1657 ok = IOService::handleOpen(forClient, options, arg);
1666 void IOFireWireAVCSubUnit::handleClose( IOService * forClient, IOOptionBits options ) argument
1670 if( isOpen( forClient ) )
1672 IOService::handleClose(forClient, option
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/
H A DIOService.h522 @param forClient Designates the client of the provider requesting the open.
526 virtual bool open( IOService * forClient,
533 @param forClient Designates the client of the provider requesting the close.
537 virtual void close( IOService * forClient,
543 @param forClient If non-zero, <codeisOpen</code returns the open state for that client. If zero is passed, <codeisOpen</code returns the open state for all clients.
546 virtual bool isOpen( const IOService * forClient = 0 ) const;
551 @param forClient Designates the client of the provider requesting the open.
555 virtual bool handleOpen( IOService * forClient,
562 @param forClient Designates the client of the provider requesting the close.
565 virtual void handleClose( IOService * forClient,
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOService.cpp2382 bool IOService::open( IOService * forClient, argument
2391 context.excludeClient = forClient;
2402 ok = handleOpen( forClient, options, arg );
2409 void IOService::close( IOService * forClient, argument
2417 wasClosed = handleIsOpen( forClient );
2419 handleClose( forClient, options );
2426 forClient->scheduleStop( this );
2434 context.excludeClient = forClient;
2442 bool IOService::isOpen( const IOService * forClient ) const
2449 ok = handleIsOpen( forClient );
2456 handleOpen( IOService * forClient, IOOptionBits options, void * arg ) argument
2477 handleClose( IOService * forClient, IOOptionBits options ) argument
[all...]
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDEventService.h637 virtual void close( IOService * forClient, IOOptionBits options = 0 );
641 void closeGated( IOService * forClient, IOOptionBits options = 0 );
H A DIOHIDEventService.cpp2504 void IOHIDEventService::close(IOService *forClient, IOOptionBits options) argument
2506 _commandGate->runAction(OSMemberFunctionCast(IOCommandGate::Action, this, &IOHIDEventService::closeGated), forClient, (void*)options); local
2509 void IOHIDEventService::closeGated(IOService *forClient, IOOptionBits options) argument
2511 super::close(forClient, options);

Completed in 287 milliseconds