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

  /external/webkit/WebKit/win/
WebURLProtectionSpace.h 50 virtual HRESULT STDMETHODCALLTYPE authenticationMethod(
61 /* [in] */ BSTR authenticationMethod);
68 /* [in] */ BSTR authenticationMethod);
WebURLProtectionSpace.cpp 101 HRESULT STDMETHODCALLTYPE WebURLProtectionSpace::authenticationMethod(
132 static ProtectionSpaceAuthenticationScheme coreScheme(BSTR authenticationMethod)
135 if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodDefault))
137 else if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodHTTPBasic))
139 else if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodHTTPDigest))
141 else if (BString(authenticationMethod) == BString(WebURLAuthenticationMethodHTMLForm))
153 /* [in] */ BSTR authenticationMethod)
173 String(realm, SysStringLen(realm)), coreScheme(authenticationMethod));
183 /* [in] */ BSTR authenticationMethod)
203 String(realm, SysStringLen(realm)), coreScheme(authenticationMethod));
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebURLAuthenticationChallenge.idl 141 -(NSString *)authenticationMethod
143 HRESULT authenticationMethod([out, retval] BSTR* result);
151 -(id)initWithHost:(NSString *)host port:(int)port protocol:(NSString *)protocol realm:(NSString *)realm authenticationMethod:(NSString *)authenticationMethod
153 HRESULT initWithHost([in] BSTR host, [in] int port, [in] BSTR protocol, [in] BSTR realm, [in] BSTR authenticationMethod);
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);
  /external/webkit/WebCore/platform/network/mac/
AuthenticationMac.mm 205 authenticationMethod:method] autorelease];
210 authenticationMethod:method] autorelease];
283 NSString *method = [macSpace authenticationMethod];
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginView.mm 1014 NSString *authenticationMethod = NSURLAuthenticationMethodDefault;
1017 authenticationMethod = NSURLAuthenticationMethodHTTPBasic;
1019 authenticationMethod = NSURLAuthenticationMethodHTTPDigest;
1022 RetainPtr<NSURLProtectionSpace> protectionSpace(AdoptNS, [[NSURLProtectionSpace alloc] initWithHost:host port:port protocol:protocol realm:realm authenticationMethod:authenticationMethod]);

Completed in 589 milliseconds