HomeSort by relevance Sort by last modified time
    Searched refs:proxyType (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebCore/platform/network/qt/
ProxyServerQt.cpp 50 ProxyServer::Type proxyType;
53 proxyType = ProxyServer::SOCKS;
58 proxyType = ProxyServer::HTTP;
63 proxyType = ProxyServer::Direct;
66 servers.append(ProxyServer(proxyType, proxy.hostName(), proxy.port()));
  /external/webkit/Source/WebCore/platform/network/mac/
AuthenticationMac.mm 168 NSString *proxyType = nil;
184 proxyType = NSURLProtectionSpaceHTTPProxy;
187 proxyType = NSURLProtectionSpaceHTTPSProxy;
190 proxyType = NSURLProtectionSpaceFTPProxy;
193 proxyType = NSURLProtectionSpaceSOCKSProxy;
228 if (proxyType)
231 type:proxyType
285 NSString *proxyType = [macSpace proxyType];
286 if ([proxyType isEqualToString:NSURLProtectionSpaceHTTPProxy]
    [all...]
  /external/webkit/Source/WebKit/win/
WebURLProtectionSpace.h 63 /* [in] */ BSTR proxyType,
76 virtual HRESULT STDMETHODCALLTYPE proxyType(
WebURLProtectionSpace.cpp 177 /* [in] */ BSTR proxyType,
187 if (BString(proxyType) == webURLProtectionSpaceHTTPProxyBString)
189 else if (BString(proxyType) == webURLProtectionSpaceHTTPSProxyBString)
191 else if (BString(proxyType) == webURLProtectionSpaceFTPProxyBString)
193 else if (BString(proxyType) == webURLProtectionSpaceSOCKSProxyBString)
241 HRESULT STDMETHODCALLTYPE WebURLProtectionSpace::proxyType(
  /external/webkit/Source/WebCore/platform/network/cf/
SocketStreamHandleCFNet.cpp 206 CFTypeRef proxyType = CFDictionaryGetValue(proxyInfo, kCFProxyTypeKey);
207 if (proxyType && CFGetTypeID(proxyType) == CFStringGetTypeID()) {
208 if (CFEqual(proxyType, kCFProxyTypeAutoConfigurationURL)) {
221 CFTypeRef proxyType = CFDictionaryGetValue(proxyInfo, kCFProxyTypeKey);
222 if (proxyType && CFGetTypeID(proxyType) == CFStringGetTypeID()) {
223 if (CFEqual(proxyType, kCFProxyTypeSOCKS)) {
228 if (CFEqual(proxyType, kCFProxyTypeHTTPS)) {
  /external/webkit/Source/WebKit/win/Interfaces/
IWebURLAuthenticationChallenge.idl 156 -(id)initWithProxyHost:(NSString *)host port:(int)port type:(NSString *)proxyType realm:(NSString *)realm authenticationMethod:(NSString *)authenticationMethod
158 HRESULT initWithProxyHost([in] BSTR host, [in] int port, [in] BSTR proxyType, [in] BSTR realm, [in] BSTR authenticationMethod);
176 -(NSString *)proxyType
178 HRESULT proxyType([out, retval] BSTR* result);
  /external/webkit/Source/WebKit/mac/Panels/
WebAuthenticationPanel.m 145 [space proxyType], host];
158 [space proxyType], host];
  /frameworks/base/tools/aidl/
generate_java_binder.cpp 137 string proxyType = interfaceType->QualifiedName();
138 proxyType += ".Stub.Proxy";
139 NewExpression* ne = new NewExpression(NAMES.Find(proxyType));
  /external/libxml2/
nanoftp.c 151 static int proxyType = 0; /* uses TYPE or a@b ? */
288 proxyType = type;
1082 switch (proxyType) {
1103 proxyType = 1;
1106 if (proxyType == 1) {
1134 proxyType = 2;
1156 proxyType = 2;
1159 if (proxyType == 2) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm 286 CFStringRef proxyType = (CFStringRef)CFDictionaryGetValue(proxy, kCFProxyTypeKey);
287 ASSERT(CFGetTypeID(proxyType) == CFStringGetTypeID());
289 if (CFStringCompare(proxyType, kCFProxyTypeNone, 0) == kCFCompareEqualTo)
    [all...]

Completed in 1184 milliseconds