• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/

Lines Matching refs:aKey

386 IORegistryEntry::copyProperty( type * aKey) constant			\
391 obj = getProperty( aKey ); \
401 IORegistryEntry::getProperty( type * aKey, \
405 OSObject * obj = getProperty( aKey ); \
414 obj = entry->getProperty( aKey ); \
425 IORegistryEntry::copyProperty( type * aKey, \
429 OSObject * obj = copyProperty( aKey ); \
438 obj = entry->copyProperty( aKey ); \
491 IORegistryEntry::getProperty( const OSSymbol * aKey) const
496 obj = getPropertyTable()->getObject( aKey );
503 IORegistryEntry::removeProperty( const OSSymbol * aKey)
506 getPropertyTable()->removeObject( aKey );
511 IORegistryEntry::setProperty( const OSSymbol * aKey, OSObject * anObject)
525 ret = getPropertyTable()->setObject( aKey, anObject );
546 IORegistryEntry::getProperty( const OSString * aKey) const
548 const OSSymbol * tmpKey = OSSymbol::withString( aKey );
556 IORegistryEntry::getProperty( const char * aKey) const
558 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
567 IORegistryEntry::removeProperty( const OSString * aKey)
569 const OSSymbol * tmpKey = OSSymbol::withString( aKey );
575 IORegistryEntry::removeProperty( const char * aKey)
577 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
583 IORegistryEntry::setProperty( const OSString * aKey, OSObject * anObject)
585 const OSSymbol * tmpKey = OSSymbol::withString( aKey );
593 IORegistryEntry::setProperty( const char * aKey, OSObject * anObject)
595 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
603 IORegistryEntry::setProperty(const char * aKey, const char * aString)
609 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
619 IORegistryEntry::setProperty(const char * aKey, bool aBoolean)
625 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
635 IORegistryEntry::setProperty( const char * aKey,
643 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
653 IORegistryEntry::setProperty( const char * aKey,
661 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );