Searched refs:newDevice (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFireWireLink.cpp78 IOFireWireDevice *newDevice; local
81 newDevice = OSTypeAlloc( IOFireWireDevice );
83 if (!newDevice)
103 if(!newDevice->init(propTable, scan)) {
104 newDevice->release();
105 newDevice = NULL;
111 newDevice->setMaxPackLog(false, true, 2);
116 return newDevice;
H A DIOFireWireDevice.cpp1665 IOFireWireUnit * newDevice = 0; local
1722 newDevice = OSTypeAlloc( IOFireWireUnit );
1724 if (!newDevice || !newDevice->init(propTable, unit))
1728 newDevice->setMaxPackLog(true, false, fMaxWritePackLog);
1729 newDevice->setMaxPackLog(false, false, fMaxReadPackLog);
1730 newDevice->setMaxPackLog(false, true, fMaxReadROMPackLog);
1732 FWTrace( kFWTDevice, kTPDeviceProcessUnitDirectories, (uintptr_t)(fControl->getLink()), (uintptr_t)this, (uintptr_t)newDevice, 2 );
1734 if (!newDevice->attach(this))
1736 newDevice
[all...]
H A DIOFireWireController.cpp2974 IOFireWireDevice * newDevice = NULL; local
3058 newDevice = found;
3071 if(newDevice)
3073 FWTrace( kFWTController, kTPControllerUpdateDeviceNewDevice, (uintptr_t)fFWIM, (uintptr_t)(scan->fCmd), scan->fAddr.nodeID, (uintptr_t)newDevice );
3077 IOLog("UpdateDevice Found old device 0x%p\n", newDevice);
3082 if( newDevice->getTerminationState() == kNeedsTermination )
3084 newDevice->setTerminationState( kNotTerminated );
3087 newDevice->unlockForArbitration();
3089 newDevice->setNodeROM(fBusGeneration, fLocalNodeID, scan);
3090 newDevice
[all...]
/macosx-10.10/SmartCardServices-55111/src/PCSC/
H A Dpcscdmonitor.cpp472 RefPointer<PCSCD::Device> newDevice = new PCSCD::Device(service); local
477 newDevice->setAddress(address);
479 setDeviceProperties(dev, *newDevice);
480 if (drivers.find(*newDevice))
482 secdebug("driver", " found matching driver for %s: %s", newDevice->name().c_str(), newDevice->path().c_str());
483 setDebugPropertiesForDevice(dev, newDevice);
484 insert(make_pair(address, newDevice));
488 uint32_t rx = (*mAddDeviceCallback)(newDevice->name().c_str(), address, newDevice
686 setDebugPropertiesForDevice(const IOKit::Device &dev, PCSCD::Device * newDevice) argument
[all...]
H A Dpcscdmonitor.h183 void setDebugPropertiesForDevice(const IOKit::Device &dev, PCSCD::Device* newDevice);
/macosx-10.10/IOSCSIParallelFamily-300.0.2/TestTools/SCSITargetProber/Cocoa/
H A DSCSITargetProberAppDelegate.m374 SCSIDevice * newDevice = nil;
385 newDevice = [ [ SCSIDevice alloc ] initWithService: parent ];
391 domainID = [ [ newDevice domainIdentifier ] intValue ];
406 [ initiator addTargetDevice: newDevice ];
415 [ newDevice release ];
H A DSCSIInitiator.m198 - ( void ) addTargetDevice: ( SCSIDevice * ) newDevice
216 if ( [ [ device deviceIdentifier ] intValue ] == [ [ newDevice deviceIdentifier ] intValue ] )
220 [ devices replaceObjectAtIndex: index withObject: newDevice ];
/macosx-10.10/IOSCSIParallelFamily-300.0.2/
H A DIOSCSIParallelInterfaceController.cpp1700 IOSCSIParallelInterfaceDevice * newDevice = NULL; local
1722 newDevice = IOSCSIParallelInterfaceDevice::CreateTarget (
1726 require_nonzero ( newDevice, DEVICE_CREATION_FAILED_EXIT );
1728 AddDeviceToTargetList ( newDevice );
1730 result = newDevice->attach ( this );
1733 result = newDevice->SetInitialTargetProperties ( properties );
1736 result = newDevice->start ( this );
1739 newDevice->release ( );
1751 newDevice->detach ( this );
1757 RemoveDeviceFromTargetList ( newDevice );
[all...]
H A DIOSCSIParallelInterfaceDevice.cpp477 IOSCSIParallelInterfaceDevice * newDevice = NULL; local
480 newDevice = OSTypeAlloc ( IOSCSIParallelInterfaceDevice );
481 require_nonzero ( newDevice, DEVICE_CREATION_FAILURE );
483 result = newDevice->InitTarget ( targetID, sizeOfHBAData, entry );
486 return newDevice;
492 require_nonzero_quiet ( newDevice, DEVICE_CREATION_FAILURE );
493 newDevice->release ( );
494 newDevice = NULL;
H A DIOSCSIParallelInterfaceController.h1558 IOSCSIParallelInterfaceDevice * newDevice );
/macosx-10.10/AppleUSBCDCDriver-4205.2.2/AppleUSBCDC/Classes/
H A DAppleUSBCDC.cpp120 IOUSBDevice *newDevice = NULL; local
154 newDevice = OSDynamicCast(IOUSBDevice, provider);
155 if(!newDevice)
161 if (checkDevice(newDevice))
/macosx-10.10/OpenAL-54/Source/OpenAL/
H A DoalImp.cpp624 OALCaptureDevice *newDevice = NULL; local
637 newDevice = new OALCaptureDevice((const char *) devicename, newDeviceToken, frequency, format, buffersize); // create a new device object
638 if (newDevice == NULL)
643 gOALCaptureDeviceMap->Add(newDeviceToken, &newDevice); // add the new device to the device map
649 if (newDevice) delete (newDevice);
654 if (newDevice) delete (newDevice);
791 OALDevice *newDevice = NULL; local
808 newDevice
[all...]

Completed in 196 milliseconds