Searched refs:newdict (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10/IONetworkingFamily-101/
H A DIOEthernetController.cpp139 OSDictionary * newdict; local
159 newdict = OSDictionary::withDictionary(
161 if (newdict)
167 ret = newdict->setObject(gIOEthernetWakeOnLANFilterGroup, num);
177 ret = newdict->setObject(
184 setProperty(kIOPacketFilters, newdict);
186 newdict->release();
/macosx-10.10/IOFireWireIP-226.2/KernelSource/IONetworkingFamily/
H A DIOFWController.cpp144 OSDictionary *newdict; local
158 newdict = OSDictionary::withDictionary(dict); //copy the dictionary
159 if(newdict)
161 ret = newdict->setObject(gIOEthernetWakeOnLANFilterGroup, num); //and add the WOL group to it
162 setProperty(kIOPacketFilters, newdict); //then replace the property with the new dictionary
163 newdict->release();
/macosx-10.10/Security-57031.1.35/Security/sec/securityd/
H A DSecItemServer.c1460 CFMutableDictionaryRef newdict = CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
1461 if (newdict && dict && CFGetTypeID(dict) == CFDictionaryGetTypeID()) {
1468 CFDictionaryAddValue(newdict, kSecAttrServer, srvr);
1471 CFDictionaryAddValue(newdict, kSecAttrAccount, acct);
1477 CFDictionaryAddValue(newdict, kSecAttrPort, pnum);
1484 CFDictionaryAddValue(newdict, kSecSharedPassword, password);
1486 CFDictionaryAddValue(newdict, CFSTR("spwd"), password);
1492 CFArrayInsertValueAtIndex(credentials, 0, newdict);
1494 CFArrayAppendValue(credentials, newdict);
1497 CFReleaseSafe(newdict);
[all...]

Completed in 133 milliseconds