OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:proxyDictionary
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/platform/network/cf/
ProxyServerCFNet.cpp
52
CFDictionaryRef
proxyDictionary
= static_cast<CFDictionaryRef>(CFArrayGetValueAtIndex(proxiesForURL.get(), i));
55
CFStringRef typeString = static_cast<CFStringRef>(CFDictionaryGetValue(
proxyDictionary
, kCFProxyTypeKey));
77
CFStringRef host = static_cast<CFStringRef>(CFDictionaryGetValue(
proxyDictionary
, kCFProxyHostNameKey));
78
CFNumberRef port = static_cast<CFNumberRef>(CFDictionaryGetValue(
proxyDictionary
, kCFProxyPortNumberKey));
SocketStreamHandleCFNet.cpp
171
RetainPtr<CFDictionaryRef>
proxyDictionary
(AdoptCF, CFNetworkCopySystemProxySettings());
174
RetainPtr<CFDictionaryRef>
proxyDictionary
(AdoptCF, SCDynamicStoreCopyProxies(0));
182
if (!
proxyDictionary
) {
189
RetainPtr<CFArrayRef> proxyArray(AdoptCF, CFNetworkCopyProxiesForURL(m_httpsURL.get(),
proxyDictionary
.get()));
258
RetainPtr<CFDictionaryRef>
proxyDictionary
(AdoptCF, SCDynamicStoreCopyProxies(0));
265
if (!
proxyDictionary
) {
273
CFTypeRef socksEnableCF = CFDictionaryGetValue(
proxyDictionary
.get(), kSCPropNetProxiesSOCKSEnable);
276
CFTypeRef proxyHost = CFDictionaryGetValue(
proxyDictionary
.get(), kSCPropNetProxiesSOCKSProxy);
277
CFTypeRef proxyPort = CFDictionaryGetValue(
proxyDictionary
.get(), kSCPropNetProxiesSOCKSPort);
286
CFTypeRef httpsEnableCF = CFDictionaryGetValue(
proxyDictionary
.get(), kSCPropNetProxiesHTTPSEnable)
[
all
...]
Completed in 306 milliseconds