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

  /external/webkit/WebCore/platform/network/mac/
AuthenticationMac.mm 146 NSString *proxyType = nil;
162 proxyType = NSURLProtectionSpaceHTTPProxy;
165 proxyType = NSURLProtectionSpaceHTTPSProxy;
168 proxyType = NSURLProtectionSpaceFTPProxy;
171 proxyType = NSURLProtectionSpaceSOCKSProxy;
200 if (proxyType)
203 type:proxyType
257 NSString *proxyType = [macSpace proxyType];
258 if ([proxyType isEqualToString:NSURLProtectionSpaceHTTPProxy]
    [all...]
  /external/webkit/WebKit/win/
WebURLProtectionSpace.h 66 /* [in] */ BSTR proxyType,
79 virtual HRESULT STDMETHODCALLTYPE proxyType(
WebURLProtectionSpace.cpp 181 /* [in] */ BSTR proxyType,
191 if (BString(proxyType) == webURLProtectionSpaceHTTPProxyBString)
193 else if (BString(proxyType) == webURLProtectionSpaceHTTPSProxyBString)
195 else if (BString(proxyType) == webURLProtectionSpaceFTPProxyBString)
197 else if (BString(proxyType) == webURLProtectionSpaceSOCKSProxyBString)
245 HRESULT STDMETHODCALLTYPE WebURLProtectionSpace::proxyType(
  /external/webkit/WebCore/platform/network/cf/
SocketStreamHandleCFNet.cpp 205 CFTypeRef proxyType = CFDictionaryGetValue(proxyInfo, kCFProxyTypeKey);
206 if (proxyType && CFGetTypeID(proxyType) == CFStringGetTypeID()) {
207 if (CFEqual(proxyType, kCFProxyTypeAutoConfigurationURL)) {
220 CFTypeRef proxyType = CFDictionaryGetValue(proxyInfo, kCFProxyTypeKey);
221 if (proxyType && CFGetTypeID(proxyType) == CFStringGetTypeID()) {
222 if (CFEqual(proxyType, kCFProxyTypeSOCKS)) {
227 if (CFEqual(proxyType, kCFProxyTypeHTTPS)) {
  /external/webkit/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/WebKit/mac/Panels/
WebAuthenticationPanel.m 143 [space proxyType], host];
156 [space proxyType], host];
  /external/libxml2/
nanoftp.c 150 static int proxyType = 0; /* uses TYPE or a@b ? */
287 proxyType = type;
1081 switch (proxyType) {
1102 proxyType = 1;
1105 if (proxyType == 1) {
1133 proxyType = 2;
1155 proxyType = 2;
1158 if (proxyType == 2) {
    [all...]
  /external/webkit/WebCore/inspector/front-end/
utilities.js 29 Object.proxyType = function(objectProxy)
753 if (typeof substitution == "object" && Object.proxyType(substitution) === "number")
761 if (typeof substitution == "object" && Object.proxyType(substitution) === "number")
771 if (typeof substitution == "object" && Object.proxyType(substitution) !== "null")
ConsoleView.js 502 var type = (forceObjectFormat ? "object" : Object.proxyType(output));
651 var shouldFormatMessage = Object.proxyType(parameters[0]) === "string" && this.type !== WebInspector.ConsoleMessage.MessageType.Result;
    [all...]
  /frameworks/base/tools/aidl/
generate_java.cpp 174 string proxyType = interfaceType->QualifiedName();
175 proxyType += ".Stub.Proxy";
176 NewExpression* ne = new NewExpression(NAMES.Find(proxyType));

Completed in 133 milliseconds