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

Lines Matching defs:propTable

312 	void setPropTable( OSDictionary * propTable );
368 void IOFireWireUnitInfo::setPropTable( OSDictionary * propTable )
372 propTable->retain();
373 fPropTable = propTable;
470 bool IOFireWireDevice::init(OSDictionary *propTable, const IOFWNodeScan *info)
472 if(!IOFireWireNub::init(propTable))
1084 OSDictionary * propTable = info->getPropTable();
1088 OSObject * unitModelNameProperty = propTable->getObject( gFireWireProduct_Name );
1091 propTable->setObject( gFireWireProduct_Name, modelNameProperty );
1096 OSObject * unitModelIDProperty = propTable->getObject( gFireWireModel_ID );
1099 propTable->setObject( gFireWireModel_ID, modelIDProperty );
1105 propTable->setObject( gFireWireVendor_Name, vendorNameProperty );
1277 IOReturn IOFireWireDevice::readRootDirectory( IOConfigDirectory * directory, OSDictionary * propTable )
1306 propTable->setObject( gFireWireVendor_ID, num);
1376 propTable->setObject( gFireWireProduct_Name, modelName );
1386 propTable->setObject(gFireWireModel_ID, prop);
1394 propTable->setObject( gFireWireVendor_Name, vendorName );
1410 IOReturn IOFireWireDevice::processRootDirectory( OSDictionary * propTable )
1417 OSCollectionIterator * iterator = OSCollectionIterator::withCollection( propTable );
1420 property = propTable->getObject( key );
1522 OSDictionary * propTable = 0;
1529 propTable = OSDictionary::withCapacity(7);
1530 if( !propTable )
1540 propTable->setObject(gIOMatchCategoryKey, prop);
1544 propTable->setObject(gFireWireProduct_Name, modelName);
1549 propTable->setObject(gFireWireModel_ID, prop);
1554 propTable->setObject(gFireWireUnit_Spec_ID, prop);
1557 propTable->setObject(gFireWireUnit_SW_Version, prop);
1563 propTable->setObject(gFireWireVendor_ID, prop);
1566 propTable->setObject(gFireWire_GUID, prop);
1571 info->setPropTable( propTable );
1581 if( propTable != NULL )
1582 propTable->release();
1667 OSDictionary * propTable = info->getPropTable();
1685 if( (found->getTerminationState() != kTerminated) && found->matchPropertyTable(propTable) )
1724 if (!newDevice || !newDevice->init(propTable, unit))