• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/configd-699.1.5/Plugins/IPMonitor/

Lines Matching refs:new_dict

4453 merge_dns_servers(CFMutableDictionaryRef new_dict,
4510 CFDictionarySetValue(new_dict,
4513 CFDictionarySetValue(new_dict, DNS_CONFIGURATION_SCOPED_QUERY_KEY, kCFBooleanTrue);
4544 CFMutableDictionaryRef new_dict = NULL;
4593 new_dict = CFDictionaryCreateMutable(NULL, 0,
4598 merge_dns_servers(new_dict,
4607 merge_dns_servers(new_dict,
4618 merge_array_prop(new_dict,
4627 pick_prop(new_dict,
4636 if (CFDictionaryContainsKey(new_dict,
4639 CFDictionaryRemoveValue(new_dict, kSCPropNetDNSDomainName);
4640 CFDictionaryRemoveValue(new_dict, kSCPropNetDNSSearchDomains);
4641 CFDictionaryRemoveValue(new_dict, kSCPropNetDNSSearchOrder);
4642 CFDictionaryRemoveValue(new_dict, kSCPropNetDNSSortList);
4651 } else if (CFDictionaryContainsKey(new_dict, kSCPropNetDNSServiceIdentifier) &&
4660 if (CFDictionaryGetCount(new_dict) == 0) {
4661 my_CFRelease(&new_dict);
4666 CFDictionarySetValue(new_dict, kSCPropInterfaceName, interface);
4674 domain = CFDictionaryGetValue(new_dict, kSCPropNetDNSDomainName);
4678 search = CFDictionaryGetValue(new_dict, kSCPropNetDNSSearchDomains);
4685 CFDictionarySetValue(new_dict, kSCPropNetDNSSearchDomains, new_search);
4692 changed = service_dict_set(serviceID, kSCEntNetDNS, new_dict);
4693 my_CFRelease(&new_dict);
4774 CFMutableDictionaryRef new_dict = NULL;
4839 new_dict = CFDictionaryCreateMutableCopy(NULL, 0, state_dict);
4841 merge_array_prop(new_dict,
4856 CFDictionaryRemoveValue(new_dict, pick_list[i].key1);
4858 CFDictionaryRemoveValue(new_dict, pick_list[i].key2);
4861 CFDictionaryRemoveValue(new_dict, pick_list[i].key3);
4881 CFDictionaryApplyFunction(setup_copy, merge_dict, new_dict);
4885 new_dict = CFDictionaryCreateMutableCopy(NULL, 0, setup_dict);
4888 new_dict = CFDictionaryCreateMutableCopy(NULL, 0, state_dict);
4891 if ((new_dict != NULL) && (CFDictionaryGetCount(new_dict) == 0)) {
4892 CFRelease(new_dict);
4893 new_dict = NULL;
4896 if ((new_dict != NULL) && (interface != NULL)) {
4897 CFDictionarySetValue(new_dict, kSCPropInterfaceName, interface);
4901 if (new_dict != NULL) {
4908 if (CFDictionaryGetValueIfPresent(new_dict,
4923 num = CFDictionaryGetValue(new_dict, kSCPropNetProxiesProxyAutoConfigEnable);
4933 pacURL = CFDictionaryGetValue(new_dict, kSCPropNetProxiesProxyAutoConfigURLString);
4942 pacJS = CFDictionaryGetValue(new_dict, kSCPropNetProxiesProxyAutoConfigJavaScript);
4976 CFDictionarySetValue(new_dict,
4980 CFDictionarySetValue(new_dict,
4989 CFDictionarySetValue(new_dict,
4997 changed = service_dict_set(serviceID, kSCEntNetProxies, new_dict);
4998 my_CFRelease(&new_dict);
5009 CFMutableDictionaryRef new_dict = NULL;
5030 new_dict = CFDictionaryCreateMutable(NULL, 0,
5033 merge_array_prop(new_dict,
5040 pick_prop(new_dict,
5047 if (CFDictionaryGetCount(new_dict) == 0) {
5048 my_CFRelease(&new_dict);
5053 changed = service_dict_set(serviceID, kSCEntNetSMB, new_dict);
5054 my_CFRelease(&new_dict);
5168 CFMutableDictionaryRef new_dict = NULL;
5244 new_dict = CFDictionaryCreateMutable(NULL, 0,
5252 CFDictionarySetValue(new_dict, kServiceOptionRankAssertion,
5257 CFDictionarySetValue(new_dict, kIPIsCoupled, kCFBooleanTrue);
5260 changed = service_dict_set(serviceID, kSCEntNetService, new_dict);
5261 my_CFRelease(&new_dict);
5794 CFMutableDictionaryRef new_dict;
5802 new_dict = CFDictionaryCreateMutableCopy(NULL, 0, dict);
5803 CFDictionaryRemoveValue(new_dict, kSCPropInterfaceName);
5804 CFDictionaryRemoveValue(new_dict, kSCPropNetDNSSupplementalMatchDomains);
5805 CFDictionaryRemoveValue(new_dict, kSCPropNetDNSSupplementalMatchOrders);
5806 CFDictionaryRemoveValue(new_dict, DNS_CONFIGURATION_SCOPED_QUERY_KEY);
5807 keyChangeListSetValue(keys, S_state_global_dns, new_dict);
5808 CFRelease(new_dict);
5888 CFDictionaryRef new_dict;
5899 new_dict = proxy_configuration_update(dict,
5903 if (!_SC_CFEqual(S_proxies_dict, new_dict)) {
5904 if (new_dict == NULL) {
5907 keyChangeListSetValue(keys, S_state_global_proxies, new_dict);
5913 S_proxies_dict = new_dict;
7067 CFDictionaryRef new_dict = NULL;
7070 new_dict = service_dict_get(serviceID, entity);
7074 if (new_dict != NULL) {
7078 if (new_dict == NULL) {
7080 } else if (!CFEqual(old_dict, new_dict)) {