Searched refs:keys (Results 1 - 10 of 10) sorted by relevance

/darwin-on-arm/xnu/bsd/net/
H A Dif_utun_crypto_ipsec.h38 #define IF_UTUN_GET_CRYPTO_KEYS_IPSEC_SAH(keys) keys->state.u.ipsec.sah
39 #define IF_UTUN_GET_CRYPTO_KEYS_IPSEC_SAV(keys) keys->state.u.ipsec.sav
/darwin-on-arm/xnu/libkern/libkern/c++/
H A DOSDictionary.h58 * OSDictionary provides an associative store using strings for keys.
65 * Storage and access are associative, based on string-valued keys
85 * are dictionary keys (not the object values for those keys).
86 * You can use the keys to retrieve their associated object values.
89 * OSDictionary retains keys and objects added to it,
90 * and releases keys and objects removed from it (or replaced).
165 * populated with keys and objects provided.
168 * @param keys A C array of OSSymbol keys
[all...]
H A DOSKext.h438 OSArray * keys = NULL);
439 virtual OSDictionary * copyInfo(OSArray * keys = NULL);
/darwin-on-arm/xnu/iokit/IOKit/
H A DIODeviceTreeSupport.h60 const char * keys );
71 IOOptionBits options, const char * keys );
H A DIOService.h741 * they add keys to an existing dictionary, or create one. */
857 @discussion This is a helper function to aid in implementing @link matchPropertyTable matchPropertyTable@/link. A collection of dictionary keys specifies properties in a matching dictionary to be compared, with <code>compareProperty</code>, with an IOService object's property table, if <code>compareProperty</code> returns <code>true</code> for each key, success is returned; otherwise failure.
859 @param keys A collection (eg. OSSet, OSArray, OSDictionary) which should contain OSStrings (or OSSymbols) that specify the property keys to be compared.
863 OSCollection * keys );
/darwin-on-arm/xnu/libkern/c++/
H A DOSDictionary.cpp88 const OSSymbol *keys[],
94 if (!objects || !keys)
110 if (!newObject || !keys[i] || !setObject(keys[i], newObject))
118 const OSString *keys[],
124 if (!objects || !keys)
138 const OSSymbol *key = OSSymbol::withString(*keys++);
207 const OSSymbol *keys[],
213 if (me && !me->initWithObjects(objects, keys, count, capacity)) {
222 const OSString *keys[],
87 initWithObjects(const OSObject *objects[], const OSSymbol *keys[], unsigned int theCount, unsigned int theCapacity) argument
117 initWithObjects(const OSObject *objects[], const OSString *keys[], unsigned int theCount, unsigned int theCapacity) argument
206 withObjects(const OSObject *objects[], const OSSymbol *keys[], unsigned int count, unsigned int capacity) argument
221 withObjects(const OSObject *objects[], const OSString *keys[], unsigned int count, unsigned int capacity) argument
[all...]
/darwin-on-arm/xnu/iokit/Kernel/
H A DIORegistryEntry.cpp92 const OSSymbol * keys[ kNumSetIndex ]; member in class:IORegistryPlane
221 plane->keys[ kParentSetIndex ] = parentKey;
222 plane->keys[ kChildSetIndex ] = childKey;
343 old->registryTable()->removeObject( plane->keys[ kParentSetIndex ] );
344 old->registryTable()->removeObject( plane->keys[ kChildSetIndex ] );
1326 registryTable()->getObject( plane->keys[ relation ] ))) {
1337 result = registryTable()->setObject( plane->keys[ relation ],
1354 registryTable()->getObject( plane->keys[ relation ]))) {
1359 registryTable()->removeObject( plane->keys[ relation ]);
1370 plane->keys[ kParentSetInde
[all...]
H A DIODeviceTreeSupport.cpp838 const char * keys )
843 obj = OSUnserialize( keys, 0 );
850 else IOLog("Couldn't unserialize %s\n", keys );
857 IOOptionBits options, const char * keys )
885 if( keys) {
886 cmp = IODTMatchNubWithKeys( next, keys );
H A DIOMemoryDescriptor.cpp4011 OSSymbol const *keys[2];
4032 keys[0] = OSSymbol::withCString("address");
4033 keys[1] = OSSymbol::withCString("length");
4074 OSDictionary *dict = OSDictionary::withObjects((const OSObject **)values, (const OSSymbol **)keys, 2);
4096 if (keys[0])
4097 keys[0]->release();
4098 if (keys[1])
4099 keys[1]->release();
H A DIOService.cpp4549 OSCollection * keys )
4555 if( !matching || !keys)
4558 iter = OSCollectionIterator::withCollection( keys );
4566 keys->release(); // !! consume a ref !!

Completed in 108 milliseconds