Lines Matching refs:aKey
481 IORegistryEntry::copyProperty( type * aKey) constant \
486 obj = getProperty( aKey ); \
496 IORegistryEntry::getProperty( type * aKey, \
500 OSObject * obj = getProperty( aKey ); \
509 obj = entry->getProperty( aKey ); \
520 IORegistryEntry::copyProperty( type * aKey, \
524 OSObject * obj = copyProperty( aKey ); \
533 obj = entry->copyProperty( aKey ); \
603 IORegistryEntry::propertyExists(const OSSymbol * aKey) in wrap2()
605 return NULL != getProperty(aKey); in wrap2()
609 IORegistryEntry::propertyExists(const OSString * aKey) in propertyExists() argument
611 return NULL != getProperty(aKey); in propertyExists()
615 IORegistryEntry::propertyExists(const char * aKey) in propertyExists() argument
617 return NULL != getProperty(aKey); in propertyExists()
622 IORegistryEntry::propertyHasValue(const OSSymbol * aKey, in propertyHasValue() argument
628 found = copyProperty(aKey); in propertyHasValue()
635 IORegistryEntry::propertyHasValue(const OSString * aKey, in propertyHasValue() argument
641 found = copyProperty(aKey); in propertyHasValue()
648 IORegistryEntry::propertyHasValue(const char * aKey, in propertyHasValue() argument
654 found = copyProperty(aKey); in propertyHasValue()
662 IORegistryEntry::propertyExists(const OSSymbol * aKey, in propertyExists() argument
666 return NULL != getProperty(aKey, plane, options); in propertyExists()
670 IORegistryEntry::propertyExists(const OSString * aKey, in propertyExists() argument
674 return NULL != getProperty(aKey, plane, options); in propertyExists()
677 IORegistryEntry::propertyExists(const char * aKey, in propertyExists() argument
681 return NULL != getProperty(aKey, plane, options); in propertyExists()
686 IORegistryEntry::propertyHasValue(const OSSymbol * aKey, in propertyHasValue() argument
694 found = copyProperty(aKey, plane, options); in propertyHasValue()
701 IORegistryEntry::propertyHasValue(const OSString * aKey, in propertyHasValue() argument
709 found = copyProperty(aKey, plane, options); in propertyHasValue()
716 IORegistryEntry::propertyHasValue(const char * aKey, in propertyHasValue() argument
724 found = copyProperty(aKey, plane, options); in propertyHasValue()
732 IORegistryEntry::getProperty( const OSSymbol * aKey) const in getProperty()
737 obj = getPropertyTable()->getObject( aKey ); in getProperty()
744 IORegistryEntry::removeProperty( const OSSymbol * aKey) in removeProperty() argument
747 getPropertyTable()->removeObject( aKey ); in removeProperty()
759 IORegistryEntry::setProperty( const OSSymbol * aKey, OSObject * anObject) in setProperty() argument
774 ret = getPropertyTable()->setObject( aKey, anObject ); in setProperty()
778 if (anObject && strcmp(kIOKitDiagnosticsKey, aKey->getCStringNoCopy()) != 0) { in setProperty()
783 aKey->getCStringNoCopy()); in setProperty()
826 IORegistryEntry::getProperty( const OSString * aKey) const in getProperty()
828 const OSSymbol * tmpKey = OSSymbol::withString( aKey ); in getProperty()
836 IORegistryEntry::getProperty( const char * aKey) const in getProperty()
838 const OSSymbol * tmpKey = OSSymbol::withCString( aKey ); in getProperty()
847 IORegistryEntry::removeProperty( const OSString * aKey) in removeProperty() argument
849 const OSSymbol * tmpKey = OSSymbol::withString( aKey ); in removeProperty()
855 IORegistryEntry::removeProperty( const char * aKey) in removeProperty() argument
857 const OSSymbol * tmpKey = OSSymbol::withCString( aKey ); in removeProperty()
863 IORegistryEntry::setProperty( const OSString * aKey, OSObject * anObject) in setProperty() argument
865 const OSSymbol * tmpKey = OSSymbol::withString( aKey ); in setProperty()
873 IORegistryEntry::setProperty( const char * aKey, OSObject * anObject) in setProperty() argument
875 const OSSymbol * tmpKey = OSSymbol::withCString( aKey ); in setProperty()
883 IORegistryEntry::setProperty(const char * aKey, const char * aString) in setProperty() argument
889 const OSSymbol * tmpKey = OSSymbol::withCString( aKey ); in setProperty()
899 IORegistryEntry::setProperty(const char * aKey, bool aBoolean) in setProperty() argument
905 const OSSymbol * tmpKey = OSSymbol::withCString( aKey ); in setProperty()
915 IORegistryEntry::setProperty( const char * aKey, in setProperty() argument
923 const OSSymbol * tmpKey = OSSymbol::withCString( aKey ); in setProperty()
933 IORegistryEntry::setProperty( const char * aKey, in setProperty() argument
941 const OSSymbol * tmpKey = OSSymbol::withCString( aKey ); in setProperty()