• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/

Lines Matching defs:newDict

508 		CFMutableDictionaryRef		newDict;
529 newDict = CFDictionaryCreateMutable(allocator,
534 CFDictionaryAddValue(newDict, kSCPropVirtualNetworkInterfacesBondInterfaces, newInterfaces);
536 ok = SCPreferencesPathSetValue(prefs, path, newDict);
537 CFRelease(newDict);
632 CFMutableDictionaryRef newDict;
659 newDict = CFDictionaryCreateMutableCopy(NULL, 0, dict);
660 CFDictionarySetValue(newDict, kSCPropVirtualNetworkInterfacesBondInterfaces, newMembers);
662 if (!CFEqual(dict, newDict)) {
663 ok = SCPreferencesPathSetValue(interfacePrivate->prefs, path, newDict);
665 CFRelease(newDict);
791 CFMutableDictionaryRef newDict;
808 newDict = CFDictionaryCreateMutableCopy(NULL, 0, dict);
810 CFDictionarySetValue(newDict, kSCPropUserDefinedName, newName);
812 CFDictionaryRemoveValue(newDict, kSCPropUserDefinedName);
814 if (!CFEqual(dict, newDict)) {
815 ok = SCPreferencesPathSetValue(interfacePrivate->prefs, path, newDict);
817 CFRelease(newDict);
855 CFMutableDictionaryRef newDict;
872 newDict = CFDictionaryCreateMutableCopy(NULL, 0, dict);
874 CFDictionarySetValue(newDict, kSCPropVirtualNetworkInterfacesBondOptions, newOptions);
876 CFDictionaryRemoveValue(newDict, kSCPropVirtualNetworkInterfacesBondOptions);
878 if (!CFEqual(dict, newDict)) {
879 ok = SCPreferencesPathSetValue(interfacePrivate->prefs, path, newDict);
881 CFRelease(newDict);
919 CFMutableDictionaryRef newDict;
936 newDict = CFDictionaryCreateMutableCopy(NULL, 0, dict);
937 CFDictionarySetValue(newDict, kSCPropVirtualNetworkInterfacesBondMode, mode);
938 if (!CFEqual(dict, newDict)) {
939 ok = SCPreferencesPathSetValue(interfacePrivate->prefs, path, newDict);
941 CFRelease(newDict);