HomeSort by relevance Sort by last modified time
    Searched refs:realm (Results 51 - 75 of 159) sorted by null

1 23 4 5 6 7

  /external/chromium/net/http/
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_factory_unittest.cc 111 "Basic realm=\"FooBar\"",
119 EXPECT_STREQ("FooBar", handler->realm().c_str());
127 "UNSUPPORTED realm=\"FooBar\"",
138 "Digest realm=\"FooBar\", nonce=\"xyz\"",
146 EXPECT_STREQ("FooBar", handler->realm().c_str());
162 EXPECT_STREQ("", handler->realm().c_str());
178 EXPECT_STREQ("", handler->realm().c_str());
http_auth_controller.cc 287 handler_->realm(),
299 // If the server changes the authentication realm in a
301 // previous realm. If the server rejects a preemptive
303 // realm, we keep the cached credentials.
386 // to know about it. If an entry for (origin, handler->realm()) already
403 http_auth_cache_->Add(auth_origin_, handler_->realm(),
436 http_auth_cache_->Remove(auth_origin_, handler_->realm(),
461 // Check the auth cache for a realm entry.
463 http_auth_cache_->Lookup(auth_origin_, handler_->realm(),
500 // TODO(eroman): decode realm according to RFC 2047
    [all...]
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...]
http_auth_handler_basic_unittest.cc 35 std::string challenge = "Basic realm=\"Atlantis\"";
58 // the same realm.
60 "Basic realm=\"First\"",
64 // A challenge for a different realm.
66 "Basic realm=\"Second\"",
71 // more than one realm directive, we pick the last one. So this
72 // challenge should be treated as being for "First" realm.
74 "Basic realm=\"Second\",realm=\"First\"",
80 "basic realm=\"First\",realm=\"Second\""
    [all...]
  /external/webkit/Source/WebCore/platform/network/mac/
AuthenticationMac.mm 232 realm:coreSpace.realm()
237 realm:coreSpace.realm()
333 return ProtectionSpace([macSpace host], [macSpace port], serverType, [macSpace realm], scheme);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitsoupauthdialog.c 211 const char* realm; local
281 realm = soup_auth_get_realm(authData->auth);
282 // Checking that realm is not an empty string
283 hasRealm = (realm && (strlen(realm) > 0));
292 serverMessageLabel = gtk_label_new(realm);
  /frameworks/base/core/java/android/webkit/
WebViewDatabaseClassic.java 96 private static final String HTTPAUTH_REALM_COL = "realm";
410 * @param realm The realm for the password
415 void setHttpAuthUsernamePassword(String host, String realm, String username,
417 if (host == null || realm == null || !checkInitialized()) {
424 c.put(HTTPAUTH_REALM_COL, realm);
434 * host+realm pair
437 * @param realm The realm the password applies to
441 String[] getHttpAuthUsernamePassword(String host, String realm) {
    [all...]
WebViewProvider.java 82 public void setHttpAuthUsernamePassword(String host, String realm,
85 public String[] getHttpAuthUsernamePassword(String host, String realm);
  /external/chromium/chrome/browser/password_manager/
native_backend_kwallet_x.h 96 // Note that |realm| is only used for generating a useful warning message.
97 static bool CheckSerializedValue(const GArray* byte_array, const char* realm);
  /external/openssl/crypto/krb5/
krb5_asn.h 107 ** realm[1] Realm,
115 ASN1_GENERALSTRING *realm; member in struct:krb5_tktbody_st
196 ** crealm[1] Realm,
krb5_asn.c 83 ASN1_EXP(KRB5_TKTBODY, realm, ASN1_GENERALSTRING, 1),
  /external/openssl/include/openssl/
krb5_asn.h 107 ** realm[1] Realm,
115 ASN1_GENERALSTRING *realm; member in struct:krb5_tktbody_st
196 ** crealm[1] Realm,
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 54 public static final String REALM = ParameterNames.REALM;
110 || name.equalsIgnoreCase(ParameterNames.REALM)
184 * Sets the Realm of the WWWAuthenicateHeader to the <var>realm</var>
185 * parameter value. Realm strings MUST be globally unique. It is RECOMMENDED
186 * that a realm string contain a hostname or domain name. Realm strings
190 * @param realm
191 * the new Realm String of this WWWAuthenicateHeader
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar 
  /external/wpa_supplicant_8/hostapd/
config_file.c 1420 struct hostapd_nai_realm_data *realm; local
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
npapi.mm 204 NPError NPN_GetAuthenticationInfo(NPP instance, const char* protocol, const char* host, int32_t port, const char* scheme, const char *realm, char** username, uint32_t* ulen, char** password, uint32_t* plen)
210 realm:realm
WebNetscapePluginView.h 180 - (NPError)getAuthenticationInfoWithProtocol:(const char*) protocol host:(const char*)host port:(int32_t)port scheme:(const char*)scheme realm:(const char*)realm
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 309 * the given realm plus all the parameters whose names begin with "oauth_".
311 public String getAuthorizationHeader(String realm) throws IOException {
313 if (realm != null) {
314 into.append(" realm=\"").append(OAuth.percentEncode(realm)).append('"');
357 * header. The realm is included as a parameter. If the given header doesn't
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java 688 String realm = "testrealm";
692 String[] result = mWebView.getHttpAuthUsernamePassword(host, realm);
695 mWebView.setHttpAuthUsernamePassword(host, realm, userName, password);
696 result = mWebView.getHttpAuthUsernamePassword(host, realm);
702 mWebView.setHttpAuthUsernamePassword(host, realm, userName, newPassword);
703 result = mWebView.getHttpAuthUsernamePassword(host, realm);
709 mWebView.setHttpAuthUsernamePassword(host, realm, newUserName, newPassword);
710 result = mWebView.getHttpAuthUsernamePassword(host, realm);
716 mWebView.setHttpAuthUsernamePassword(host, realm, null, password);
717 result = mWebView.getHttpAuthUsernamePassword(host, realm);
    [all...]
WebViewClientTest.java 292 HttpAuthHandler handler, String host, String realm) {
293 super.onReceivedHttpAuthRequest(view, handler, host, realm);
  /packages/apps/Browser/src/com/android/browser/
WebViewController.java 73 final String host, final String realm);
  /external/webkit/Source/WebCore/plugins/
npapi.cpp 191 NPError NPN_GetAuthenticationInfo(NPP instance, const char* protocol, const char* host, int32_t port, const char* scheme, const char* realm, char** username, uint32_t* ulen, char** password, uint32_t* plen)
193 return pluginViewForInstance(instance)->getAuthenticationInfo(protocol, host, port, scheme, realm, username, ulen, password, plen);
  /external/iproute2/ip/
iproute.c 71 fprintf(stderr, " [ ssthresh NUMBER ] [ realms REALM ] [ src ADDRESS ]\n");
99 int realm, realmmask; member in struct:__anon7856
252 if ((realms^filter.realm)&filter.realmmask)
385 fprintf(fp, "realm%s ", from ? "s" : "");
556 fprintf(fp, " realm%s ", from ? "s" : "");
614 __u32 realm; local
616 if (get_rt_realms(&realm, *argv))
617 invarg("\"realm\" value is invalid\n", *argv);
618 rta_addattr32(rta, 4096, RTA_FLOW, realm);
873 __u32 realm; local
1123 __u32 realm; local
    [all...]

Completed in 493 milliseconds

1 23 4 5 6 7