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

Lines Matching refs:aKey

407 IORegistryEntry::copyProperty( type * aKey) constant			\
412 obj = getProperty( aKey ); \
422 IORegistryEntry::getProperty( type * aKey, \
426 OSObject * obj = getProperty( aKey ); \
435 obj = entry->getProperty( aKey ); \
446 IORegistryEntry::copyProperty( type * aKey, \
450 OSObject * obj = copyProperty( aKey ); \
459 obj = entry->copyProperty( aKey ); \
512 IORegistryEntry::getProperty( const OSSymbol * aKey) const
517 obj = getPropertyTable()->getObject( aKey );
524 IORegistryEntry::removeProperty( const OSSymbol * aKey)
527 getPropertyTable()->removeObject( aKey );
541 IORegistryEntry::setProperty( const OSSymbol * aKey, OSObject * anObject)
555 ret = getPropertyTable()->setObject( aKey, anObject );
559 if ( anObject && strcmp(kIOKitDiagnosticsKey, aKey->getCStringNoCopy()) != 0 ) {
564 aKey->getCStringNoCopy() );
587 IORegistryEntry::getProperty( const OSString * aKey) const
589 const OSSymbol * tmpKey = OSSymbol::withString( aKey );
597 IORegistryEntry::getProperty( const char * aKey) const
599 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
608 IORegistryEntry::removeProperty( const OSString * aKey)
610 const OSSymbol * tmpKey = OSSymbol::withString( aKey );
616 IORegistryEntry::removeProperty( const char * aKey)
618 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
624 IORegistryEntry::setProperty( const OSString * aKey, OSObject * anObject)
626 const OSSymbol * tmpKey = OSSymbol::withString( aKey );
634 IORegistryEntry::setProperty( const char * aKey, OSObject * anObject)
636 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
644 IORegistryEntry::setProperty(const char * aKey, const char * aString)
650 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
660 IORegistryEntry::setProperty(const char * aKey, bool aBoolean)
666 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
676 IORegistryEntry::setProperty( const char * aKey,
684 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );
694 IORegistryEntry::setProperty( const char * aKey,
702 const OSSymbol * tmpKey = OSSymbol::withCString( aKey );