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

/macosx-10.5.8/xnu-1228.15.4/libkern/libkern/c++/
H A DOSDictionary.h214 @param aKey A unique OSSymbol identifying the object placed within the collection.
218 virtual bool setObject(const OSSymbol *aKey, const OSMetaClassBase *anObject);
222 @param aKey A unique OSString identifying the object placed within the collection.
226 virtual bool setObject(const OSString *aKey, const OSMetaClassBase *anObject);
230 @param aKey A unique string identifying the object placed within the collection.
234 virtual bool setObject(const char *aKey, const OSMetaClassBase *anObject);
239 @param aKey A unique OSSymbol identifying the object to be removed from the dictionary.
241 virtual void removeObject(const OSSymbol *aKey);
245 @param aKey A unique OSString identifying the object to be removed from the dictionary.
247 virtual void removeObject(const OSString *aKey);
[all...]
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIORegistryEntry.h90 @param aKey The property's name as a C-string.
95 virtual OSObject * copyProperty( const char * aKey,
105 @param aKey The property's name as an OSString.
110 virtual OSObject * copyProperty( const OSString * aKey,
120 @param aKey The property's name as an OSSymbol.
125 virtual OSObject * copyProperty( const OSSymbol * aKey,
267 @param aKey The properties name as an OSSymbol.
271 virtual bool setProperty(const OSSymbol * aKey, OSObject * anObject);
276 @param aKey The property's name as an OSString.
280 virtual bool setProperty(const OSString * aKey, OSObjec
[all...]
H A DIONVRAM.h136 virtual OSObject *getProperty(const OSSymbol *aKey) const;
137 virtual OSObject *getProperty(const char *aKey) const;
138 virtual bool setProperty(const OSSymbol *aKey, OSObject *anObject);
139 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);
/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSDictionary.cpp307 setObject(const OSSymbol *aKey, const OSMetaClassBase *anObject) argument
309 if (!anObject || !aKey)
314 if (aKey == dictionary[i].key) {
333 aKey->taggedRetain(OSTypeID(OSCollection));
335 dictionary[count].key = aKey;
342 void OSDictionary::removeObject(const OSSymbol *aKey) argument
344 if (!aKey)
349 if (aKey == dictionary[i].key) {
392 OSObject *OSDictionary::getObject(const OSSymbol *aKey) const
394 if (!aKey)
454 OSString * aKey; local
[all...]
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIORegistryEntry.cpp386 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 removeProperty( const OSSymbol * aKey) argument
511 setProperty( const OSSymbol * aKey, OSObject * anObject) argument
567 removeProperty( const OSString * aKey) argument
575 removeProperty( const char * aKey) argument
583 setProperty( const OSString * aKey, OSObject * anObject) argument
593 setProperty( const char * aKey, OSObject * anObject) argument
603 setProperty(const char * aKey, const char * aString) argument
619 setProperty(const char * aKey, bool aBoolean) argument
635 setProperty( const char * aKey, unsigned long long aValue, unsigned int aNumberOfBits) argument
653 setProperty( const char * aKey, void * bytes, unsigned int length) argument
[all...]
H A DIONVRAM.cpp263 OSObject *IODTNVRAM::getProperty(const OSSymbol *aKey) const
271 variablePerm = getOFVariablePerm(aKey);
278 return _ofDict->getObject(aKey);
281 OSObject *IODTNVRAM::getProperty(const char *aKey) const
286 keySymbol = OSSymbol::withCStringNoCopy(aKey);
295 bool IODTNVRAM::setProperty(const OSSymbol *aKey, OSObject *anObject) argument
305 propPerm = getOFVariablePerm(aKey);
314 if (_ofDict->getObject(aKey) == 0) return false;
318 if (aKey->isEqualTo(kIODTNVRAMPanicInfoKey)) return false;
321 propType = getOFVariableType(aKey);
362 removeProperty(const OSSymbol *aKey) argument
[all...]
H A DIOCPU.cpp443 OSObject *IOCPU::getProperty(const OSSymbol *aKey) const
445 if (aKey == gIOCPUStateKey) return gIOCPUStateNames[_cpuState];
447 return super::getProperty(aKey);
450 bool IOCPU::setProperty(const OSSymbol *aKey, OSObject *anObject) argument
454 if (aKey == gIOCPUStateKey) {
477 return super::setProperty(aKey, anObject);

Completed in 92 milliseconds