• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/

Lines Matching refs:found

269 		return;	// Already found this one.
323 FWKLOG(("findDuplicateGUID found GUID %08x %08x.\n",(unsigned int )(guid >> 32),(unsigned int )(guid & 0xffffffff)));
1223 IOFireWireDevice * found = OSDynamicCast(IOFireWireDevice, child);
1226 if(found && (found->getTerminationState() == kNotTerminated) && found->isOpen())
1229 messageClient( kIOFWMessageServiceIsRequestingClose, found );
1912 IOFireWireDevice * found = OSDynamicCast(IOFireWireDevice, child);
1914 if( found && (found->getTerminationState() == kNotTerminated) && found->fNodeID == kFWBadNodeID )
1920 AbsoluteTime resume_time = found->getResumeTime();
1929 terminateDevice( found );
2005 IOFireWireDevice * found = OSDynamicCast(IOFireWireDevice, child);
2008 if( found && (found->getTerminationState() == kNotTerminated) )
2010 found->setNodeROM( oldgen, kFWBadNodeID, NULL );
2512 IOFWIsochChannel *found;
2514 while( (found = (IOFWIsochChannel *)fAllocChannelIterator->getNextObject()) )
2516 found->handleBusReset();
2941 return false; // Already found or zero, don't add it. Return false so caller doesn't reset the bus again
3050 IOFireWireDevice * found = OSDynamicCast(IOFireWireDevice, child);
3051 if( found )
3054 found->lockForArbitration();
3056 if( found->fUniqueID == guid && (found->getTerminationState() != kTerminated) )
3058 newDevice = found;
3065 found->unlockForArbitration();
3442 IOFireWireDevice * found = OSDynamicCast(IOFireWireDevice, child);
3445 if( found && (found->getTerminationState() == kNotTerminated) && found->fNodeID == kFWBadNodeID )
3454 // if we found all of our devices, set the prune delay to normal
3892 IOFireWireDevice * found = OSDynamicCast(IOFireWireDevice, child);
3895 if( found && (found->getTerminationState() == kNotTerminated) )
3897 if( found->fNodeID == kFWBadNodeID )
3899 FWTrace( kFWTController, kTPControllerUpdatePlane, (uintptr_t)fFWIM, (uintptr_t)found, 1, 0 );
3900 terminateDevice( found );
3904 OSString * tdm_string = OSDynamicCast( OSString, found->getProperty( gFireWireTDM ) );
3949 //IOLog( "IOFireWireController : message request close device object %p\n", found);
4000 IOFireWireDevice * found = OSDynamicCast(IOFireWireDevice, child);
4003 if( found && (found->getTerminationState() == kNotTerminated) )
4005 // if we found an active device, ask it to reconfigure it's
4007 found->configurePhysicalFilter();
5455 IOFWAddressSpace * found;
5457 while( (found = (IOFWAddressSpace *) fSpaceIterator->getNextObject())) {
5458 if(found->contains(address))
5464 return found;
5505 IOFWAsyncStreamReceiver * found = NULL;
5509 found = NULL;
5510 while( (found = OSDynamicCast(IOFWAsyncStreamReceiver, iterator->getNextObject())) )
5512 if( found and found->listens(channel) )
5520 return found;
5547 IOFWAsyncStreamReceiver * found = NULL;
5548 while( (found = OSDynamicCast(IOFWAsyncStreamReceiver, iterator->getNextObject())) )
5550 if( found )
5551 found->activate( getBroadcastSpeed() );
5570 IOFWAsyncStreamReceiver * found = NULL;
5571 while( (found = OSDynamicCast(IOFWAsyncStreamReceiver, iterator->getNextObject())) )
5573 if( found )
5574 found->deactivate();
5593 IOFWAsyncStreamReceiver * found = NULL;
5594 while( (found = OSDynamicCast(IOFWAsyncStreamReceiver, iterator->getNextObject())) )
5596 if( found )
5597 removeAsyncStreamReceiver( found );
5622 IOFWAddressSpace * found;
5624 while( (found = (IOFWAddressSpace *) fSpaceIterator->getNextObject()))
5627 if( space->isExclusive() || found->isExclusive() )
5630 if( found->intersects( space ) )
5764 IOFWAddressSpace * found;
5805 while( (found = (IOFWAddressSpace *) fSpaceIterator->getNextObject())) {
5806 ret = found->doWrite(sourceID, speed, addr, len, buf, (IOFWRequestRefCon)tLabel);
5856 IOFWAddressSpace * found;
5859 while( (found = (IOFWAddressSpace *) fSpaceIterator->getNextObject())) {
5860 ret = found->doRead(nodeID, speed, addr, len, buf, offset,
5870 IOFWPhysicalAddressSpace * phys_space = OSDynamicCast( IOFWPhysicalAddressSpace, found );
5888 IOFWAddressSpace * found;
5891 while( (found = (IOFWAddressSpace *) fSpaceIterator->getNextObject())) {
5892 ret = found->doWrite(nodeID, speed, addr, len, buf, refcon);
5907 IOFWAddressSpace * found;
5910 while( (found = (IOFWAddressSpace *) fSpaceIterator->getNextObject())) {
5911 ret = found->doLock(nodeID, speed, addr, inLen, newVal, outLen, oldVal, type, refcon);
5929 IOFWAddressSpace * found;
5932 while( (found = (IOFWAddressSpace *) fSpaceIterator->getNextObject()) )
5934 IOFWPseudoAddressSpace * space = OSDynamicCast( IOFWPseudoAddressSpace, found );
6928 // stop once we've found the lower node because there's enough info in the hop count table at that point
7121 IOFireWireDevice * found = NULL;
7135 found = OSDynamicCast(IOFireWireDevice, child);
7138 if( found && (found->getTerminationState() == kNotTerminated) && found->fNodeID == nodeID )
7145 return found;