• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/

Lines Matching +defs:child +defs:name

188 				OSString * name, OSString ** matched ) const
190 return( nub->IORegistryEntry::compareName( name, matched ));
228 bool IOPlatformExpert::getMachineName( char * /*name*/, int /*maxLength*/)
233 bool IOPlatformExpert::getModelName( char * /*name*/, int /*maxLength*/)
313 IOReturn IOPlatformExpert::registerInterruptController(OSSymbol *name, IOInterruptController *interruptController)
317 gIOInterruptControllers->setObject(name, interruptController);
327 IOReturn IOPlatformExpert::deregisterInterruptController(OSSymbol *name)
331 gIOInterruptControllers->removeObject(name);
338 IOInterruptController *IOPlatformExpert::lookUpInterruptController(OSSymbol *name)
345 object = gIOInterruptControllers->getObject(name);
587 OSDictionary * child;
603 if ( NULL != (child = (OSDictionary *) children->getObject (i)) ) {
604 if ( NULL != (aService = (IOService *) child->getObject ("service")) )
613 // exists there) of a new child.
687 // print name
689 if ( mkey->isEqualTo ("name") ) {
692 getCStringForObject(inDictionary->getObject("name"), nameStr,
695 IOLog ("%s name is %s\n", inMsg, nameStr);
750 * Callouts from BSD for machine name & model
753 boolean_t PEGetMachineName( char * name, int maxLength )
756 return( gIOPlatform->getMachineName( name, maxLength ));
761 boolean_t PEGetModelName( char * name, int maxLength )
764 return( gIOPlatform->getModelName( name, maxLength ));
1215 OSString * name, OSString ** matched ) const
1217 return( IODTCompareNubName( nub, name, matched )
1218 || super::compareNubName( nub, name, matched) );
1221 bool IODTPlatformExpert::getModelName( char * name, int maxLength )
1243 name[ len++ ] = c;
1248 name[ len ] = 0;
1254 bool IODTPlatformExpert::getMachineName( char * name, int maxLength )
1264 strlcpy( name, (const char *) prop->getBytesNoCopy(), maxLength );
1301 const OSSymbol ** name, OSData ** value )
1303 if (dtNVRAM) return dtNVRAM->readNVRAMProperty(entry, name, value);
1309 const OSSymbol * name, OSData * value )
1311 if (dtNVRAM) return dtNVRAM->writeNVRAMProperty(entry, name, value);
1397 bool IOPlatformExpertDevice::compareName( OSString * name,
1400 return( IODTCompareNubName( this, name, matched ));
1499 bool IOPlatformDevice::compareName( OSString * name,
1503 compareNubName( this, name, matched ));
1537 const char * platform_name = "(unknown platform name)";