Searched refs:aKey (Results 1 - 11 of 11) sorted by relevance

/darwin-on-arm/xnu/libkern/libkern/c++/
H A DOSDictionary.h560 * @param aKey An OSSymbol identifying the object
571 * An object already stored under <code>aKey</code> is released.
574 const OSSymbol * aKey,
583 * @param aKey An OSString identifying the object
593 * An OSSymbol for <code>aKey</code> is created internally.
594 * An object already stored under <code>aKey</code> is released.
597 const OSString * aKey,
607 * @param aKey A C string identifying the object
617 * An OSSymbol for <code>aKey</code> is created internally.
618 * An object already stored under <code>aKey</cod
[all...]
/darwin-on-arm/xnu/iokit/IOKit/
H A DIORegistryEntry.h94 @param aKey The property's name as a C-string.
99 virtual OSObject * copyProperty( const char * aKey,
108 @param aKey The property's name as an OSString.
113 virtual OSObject * copyProperty( const OSString * aKey,
122 @param aKey The property's name as an OSSymbol.
127 virtual OSObject * copyProperty( const OSSymbol * aKey,
279 @param aKey The properties name as an OSSymbol.
283 virtual bool setProperty(const OSSymbol * aKey, OSObject * anObject);
288 @param aKey The property's name as an OSString.
292 virtual bool setProperty(const OSString * aKey, OSObjec
[all...]
H A DIONVRAM.h143 virtual OSObject *getProperty(const OSSymbol *aKey) const;
144 virtual OSObject *getProperty(const char *aKey) const;
145 virtual bool setProperty(const OSSymbol *aKey, OSObject *anObject);
146 virtual void removeProperty(const OSSymbol *aKey);
H A DIOCPU.h82 virtual OSObject *getProperty(const OSSymbol *aKey) const;
83 virtual bool setProperty(const OSSymbol *aKey, OSObject *anObject);
/darwin-on-arm/xnu/libkern/c++/
H A DOSDictionary.cpp318 setObject(const OSSymbol *aKey, const OSMetaClassBase *anObject) argument
323 if (!anObject || !aKey)
329 i = OSSymbol::bsearch(aKey, &dictionary[0], count, sizeof(dictionary[0]));
330 exists = (i < count) && (aKey == dictionary[i].key);
332 if ((exists = (aKey == dictionary[i].key))) break;
355 aKey->taggedRetain(OSTypeID(OSCollection));
357 dictionary[i].key = aKey;
364 void OSDictionary::removeObject(const OSSymbol *aKey) argument
369 if (!aKey)
375 i = OSSymbol::bsearch(aKey,
496 OSString * aKey; local
[all...]
/darwin-on-arm/xnu/iokit/Kernel/
H A DIORegistryEntry.cpp407 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 removeProperty( const OSSymbol * aKey) argument
541 setProperty( const OSSymbol * aKey, OSObject * anObject) argument
608 removeProperty( const OSString * aKey) argument
616 removeProperty( const char * aKey) argument
624 setProperty( const OSString * aKey, OSObject * anObject) argument
634 setProperty( const char * aKey, OSObject * anObject) argument
644 setProperty(const char * aKey, const char * aString) argument
660 setProperty(const char * aKey, bool aBoolean) argument
676 setProperty( const char * aKey, unsigned long long aValue, unsigned int aNumberOfBits) argument
694 setProperty( const char * aKey, void * bytes, unsigned int length) argument
[all...]
H A DIONVRAM.cpp269 OSObject *IODTNVRAM::getProperty(const OSSymbol *aKey) const
277 variablePerm = getOFVariablePerm(aKey);
284 return _ofDict->getObject(aKey);
287 OSObject *IODTNVRAM::getProperty(const char *aKey) const
292 keySymbol = OSSymbol::withCStringNoCopy(aKey);
301 bool IODTNVRAM::setProperty(const OSSymbol *aKey, OSObject *anObject) argument
311 propPerm = getOFVariablePerm(aKey);
320 if (_ofDict->getObject(aKey) == 0) return false;
324 if (aKey->isEqualTo(kIODTNVRAMPanicInfoKey)) return false;
327 propType = getOFVariableType(aKey);
368 removeProperty(const OSSymbol *aKey) argument
[all...]
H A DIOCPU.cpp475 OSObject *IOCPU::getProperty(const OSSymbol *aKey) const
477 if (aKey == gIOCPUStateKey) return gIOCPUStateNames[_cpuState];
479 return super::getProperty(aKey);
482 bool IOCPU::setProperty(const OSSymbol *aKey, OSObject *anObject) argument
486 if (aKey == gIOCPUStateKey) {
509 return super::setProperty(aKey, anObject);
H A DIOPMrootDomain.cpp8404 OSObject * IORootParent::copyProperty( const char * aKey) const
8406 return (IOService::copyProperty(aKey));
/darwin-on-arm/xnu/iokit/Drivers/KernelBuiltIn/ARM/AppleARMPlatform/
H A DIOCPU.h82 virtual OSObject *getProperty(const OSSymbol * aKey) const;
83 virtual bool setProperty(const OSSymbol * aKey, OSObject * anObject);
/darwin-on-arm/xnu/iokit/IOKit/pwr_mgt/
H A DRootDomain.h730 virtual OSObject * copyProperty( const char * aKey ) const;

Completed in 100 milliseconds