Searched refs:proxySettings (Results 1 – 6 of 6) sorted by relevance
/external/webkit/Source/WebCore/platform/network/cf/ |
D | DNSCFNet.cpp | 79 RetainPtr<CFDictionaryRef> proxySettings(AdoptCF, CFNetworkCopySystemProxySettings()); in proxyIsEnabledInSystemPreferences() local 81 RetainPtr<CFDictionaryRef> proxySettings(AdoptCF, SCDynamicStoreCopyProxies(0)); in proxyIsEnabledInSystemPreferences() 83 if (!proxySettings) in proxyIsEnabledInSystemPreferences() 89 …tr<CFArrayRef> httpProxyArray(AdoptCF, CFNetworkCopyProxiesForURL(httpCFURL, proxySettings.get())); in proxyIsEnabledInSystemPreferences() 90 …<CFArrayRef> httpsProxyArray(AdoptCF, CFNetworkCopyProxiesForURL(httpsCFURL, proxySettings.get())); in proxyIsEnabledInSystemPreferences()
|
D | ProxyServerCFNet.cpp | 41 RetainPtr<CFDictionaryRef> proxySettings(AdoptCF, CFNetworkCopySystemProxySettings()); in addProxyServersForURL() local 42 if (!proxySettings) in addProxyServersForURL() 46 …r<CFArrayRef> proxiesForURL(AdoptCF, CFNetworkCopyProxiesForURL(cfURL.get(), proxySettings.get())); in addProxyServersForURL()
|
/external/chromium/chrome/browser/resources/net_internals/ |
D | proxyview.js | 50 ProxyView.prototype.onProxySettingsChanged = function(proxySettings) { argument 51 var original = proxySettings.original; 52 var effective = proxySettings.effective;
|
D | main.js | 191 this.pollableDataHelpers_.proxySettings = 440 BrowserBridge.prototype.receivedProxySettings = function(proxySettings) { argument 441 this.pollableDataHelpers_.proxySettings.update(proxySettings); 654 this.pollableDataHelpers_.proxySettings.addObserver(observer);
|
D | dataview.js | 194 text.push(proxySettingsToString(data.proxySettings.effective)); 202 text.push(proxySettingsToString(data.proxySettings.original));
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
D | MediaPlayerPrivateQTKit.mm | 275 CFDictionaryRef proxySettings = CFNetworkCopySystemProxySettings(); 276 CFArrayRef proxiesForURL = CFNetworkCopyProxiesForURL((CFURLRef)cocoaURL, proxySettings); 301 if (proxySettings) 302 CFRelease(proxySettings);
|