HomeSort by relevance Sort by last modified time
    Searched defs:realm (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/iproute2/ip/
rtm_map.c 98 __u32 realm = 0; local
112 if (*arg && rtnl_rtrealm_a2n(&realm, arg))
114 *realms |= realm;
iprule.c 295 __u32 realm; local
297 if (get_rt_realms(&realm, *argv))
299 addattr32(&req.n, sizeof(req), FRA_FLOW, realm);
  /external/webkit/Source/WebCore/platform/network/
ProtectionSpace.cpp 50 ProtectionSpace::ProtectionSpace(const String& host, int port, ProtectionSpaceServerType serverType, const String& realm, ProtectionSpaceAuthenticationScheme authenticationScheme)
54 , m_realm(realm.length() ? realm : "")
83 const String& ProtectionSpace::realm() const function in class:WebCore::ProtectionSpace
114 // Ignore realm for proxies
115 if (!a.isProxy() && a.realm() != b.realm())
  /external/webkit/Source/WebKit2/UIProcess/Authentication/
WebProtectionSpace.cpp 48 const String& WebProtectionSpace::realm() const function in class:WebKit::WebProtectionSpace
50 return m_coreProtectionSpace.realm();
  /libcore/luni/src/main/java/libcore/net/http/
Challenge.java 26 final String realm; field in class:Challenge
28 public Challenge(String scheme, String realm) {
30 this.realm = realm;
36 && ((Challenge) o).realm.equals(realm);
40 return scheme.hashCode() + 31 * realm.hashCode();
44 return "Challenge[" + scheme + " " + realm + "]";
HeaderParser.java 73 * name and realm.
81 * realm = "realm" "=" realm-value
82 * realm-value = quoted-string
98 // TODO: This currently only handles schemes with a 'realm' parameter;
102 if (!value.regionMatches(pos, "realm=\"", 0, "realm=\"".length())) {
106 pos += "realm=\"".length();
109 String realm = value.substring(realmStart, pos) local
    [all...]
  /external/chromium/net/http/
http_auth_handler_basic.cc 17 // Note that if a realm was not specified, we will default it to "";
18 // so specifying 'Basic realm=""' is equivalent to 'Basic'.
21 // production of challenge that realm is required.
24 // include a realm (see http://crbug.com/20984.)
40 // Extract the realm (may be missing).
41 std::string realm; local
43 if (LowerCaseEqualsASCII(parameters.name(), "realm"))
44 realm = parameters.value();
50 realm_ = realm;
58 // is for a different realm, then indicate the realm change
60 std::string realm; local
    [all...]
http_auth_cache.h 21 // For each (origin, realm, scheme) triple the cache stores a
25 // - the last auth handler used (contains realm and authentication scheme)
26 // - the list of paths which used this realm
27 // Entries can be looked up by either (origin, realm, scheme) or (origin, path).
42 // Find the realm entry on server |origin| for realm |realm| and
45 // |realm| - case sensitive realm string.
49 const std::string& realm,
120 const std::string realm() const { function in class:net::HttpAuthCache::Entry
    [all...]
http_auth_handler.h 83 // The realm value that was parsed during Init().
84 const std::string& realm() const { function in class:net::HttpAuthHandler
163 // The realm. Used by "basic" and "digest".
http_auth_handler_digest.cc 37 // | ?, md5 | user:realm:password |
39 // | md5-sess | MD5(user:realm:password):nonce:cnonce |
112 // there is a rejection the realm hasn't changed.
117 std::string realm; local
119 // Try to find the "stale" value, and also keep track of the realm
125 } else if (LowerCaseEqualsASCII(parameters.name(), "realm")) {
126 realm = parameters.value();
129 return (realm_ != realm) ?
175 // [realm="<realm-value>"
    [all...]
  /external/ppp/pppd/plugins/radius/
radrealms.c 6 * allows selection of alternate set of servers based on the user's realm.
44 char *realm; local
55 realm = strrchr(user, '@');
57 if (realm) {
58 info("Looking up servers for realm '%s'", realm);
60 info("Looking up servers for DEFAULT realm");
62 if (realm) {
63 if (*(++realm) == '\0') {
64 realm = NULL
    [all...]
  /external/webkit/Source/WebCore/platform/network/cf/
AuthenticationCF.cpp 178 CFStringRef realm = coreSpace.realm().createCFString(); local
179 CFURLProtectionSpaceRef result = CFURLProtectionSpaceCreate(0, host, coreSpace.port(), serverType, realm, scheme);
181 CFRelease(realm);
  /frameworks/base/obex/javax/obex/
ObexSession.java 73 * 0x02 is the realm, which provides a description of which user name
80 String realm = null; local
93 realm = new String(realmString, "ISO8859_1");
101 realm = ObexHelper.convertToUnicode(realmString, false);
126 .onAuthenticationChallenge(realm, isUserIDRequired, isFullAccess);
  /external/chromium/net/base/
auth.h 34 std::wstring realm; // the realm provided by the server, if there is one. member in class:net::AuthChallengeInfo
  /external/chromium/chrome/browser/importer/
nss_decryptor.cc 168 // For HTTP authentication logins, the URL may contain http realm,
170 // sitename:8080 (realm)
172 std::string realm; local
186 realm = lines[begin].substr(start, end - start);
188 // Don't have http realm. It is the URL that the following passwords
197 if (!realm.empty())
198 form.signon_realm += realm;
269 std::string realm(s2.ColumnString(1));
270 if (!realm.empty()) {
286 if (!realm.empty()
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
CredentialsCache.java 72 String realm = authorization.getRealm(); local
75 if ( realm.equals(authHeader.getRealm()) ) {
AuthenticationHelperImpl.java 228 String realm = authHeader.getRealm(); local
233 ((SecureAccountManager)this.accountManager).getCredentialHash(challengedTransaction,realm);
241 UserCredentials userCreds = ((AccountManager) this.accountManager).getCredentials(challengedTransaction, realm);
245 "Cannot find user creds for the given user name and realm");
247 // we haven't yet authenticated this realm since we were
  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.h 148 encoder->encode(CoreIPC::In(space.host(), space.port(), static_cast<uint32_t>(space.serverType()), space.realm(), static_cast<uint32_t>(space.authenticationScheme())));
156 String realm; local
159 if (!decoder->decode(CoreIPC::Out(host, port, serverType, realm, authenticationScheme)))
162 space = WebCore::ProtectionSpace(host, port, static_cast<WebCore::ProtectionSpaceServerType>(serverType), realm, static_cast<WebCore::ProtectionSpaceAuthenticationScheme>(authenticationScheme));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 39 * a port number, a realm name and an authentication scheme name which
61 * The <tt>null</tt> value represents any realm.
71 * Default scope matching any host, port, realm and authentication scheme.
80 /** The realm the credentials apply to. */
81 private final String realm; field in class:AuthScope
90 * <tt>host</tt>, <tt>port</tt>, <tt>realm</tt>, and
99 * @param realm the realm the credentials apply to. May be set
101 * any realm.
107 final String realm, final String scheme
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpAuthenticator.java 83 challenge.realm, challenge.scheme, url, Authenticator.RequestorType.PROXY);
86 getConnectToInetAddress(proxy, url), url.getPort(), url.getProtocol(), challenge.realm,
110 * name and realm.
117 // realm = "realm" "=" realm-value
118 // realm-value = quoted-string
133 // TODO: This currently only handles schemes with a 'realm' parameter;
137 if (!value.regionMatches(pos, "realm=\"", 0, "realm=\"".length()))
144 String realm = value.substring(realmStart, pos); local
158 final String realm; field in class:HttpAuthenticator.Challenge
    [all...]
  /external/webkit/Source/WebKit/win/
WebURLProtectionSpace.cpp 150 /* [in] */ BSTR realm,
169 String(realm, SysStringLen(realm)), coreScheme(authenticationMethod));
178 /* [in] */ BSTR realm,
199 String(realm, SysStringLen(realm)), coreScheme(authenticationMethod));
264 HRESULT STDMETHODCALLTYPE WebURLProtectionSpace::realm( function in class:WebURLProtectionSpace
267 BString bstring = m_protectionSpace.realm();
  /cts/tests/tests/webkit/src/android/webkit/cts/
HttpAuthHandlerTest.java 59 String realm; field in class:HttpAuthHandlerTest.ProceedHttpAuthClient
76 HttpAuthHandler handler, String host, String realm) {
82 this.realm = realm;
90 String realm; field in class:HttpAuthHandlerTest.CancelHttpAuthClient
98 HttpAuthHandler handler, String host, String realm) {
99 this.realm = realm;
112 assertEquals(CtsTestServer.AUTH_REALM, client.realm);
124 assertEquals(CtsTestServer.AUTH_REALM, client.realm);
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
Krb5LoginModuleTest.java 40 // default realm
41 private static final String ENV_REALM = "java.security.krb5.realm";
46 // old value of 'java.security.krb5.realm' system property
47 private String realm; field in class:Krb5LoginModuleTest
63 realm = System.getProperty(ENV_REALM);
77 System.setProperty(ENV_REALM, "MY.REALM");
92 TestUtils.setSystemProperty(ENV_REALM, realm);
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 128 if (getParameter("realm") == null) {
129 throw new MalformedChallengeException("missing realm in challange");
263 String realm = getParameter("realm"); local
270 if (realm == null) {
271 throw new IllegalStateException("Realm may not be null");
297 StringBuilder tmp = new StringBuilder(uname.length() + realm.length() + pwd.length() + 2);
300 tmp.append(realm);
303 // unq(username-value) ":" unq(realm-value) ":" passwd
308 // H( unq(username-value) ":" unq(realm-value) ":" passwd
394 String realm = getParameter("realm"); local
    [all...]

Completed in 410 milliseconds

1 2 3 4