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

1 2 3 4 5

  /external/libnl/include/netlink/route/
rtnl.h 27 * Mask specying the size of each realm part
33 * Extract FROM realm from a realms field
35 #define RTNL_REALM_FROM(realm) ((realm) >> 16)
38 * Extract TO realm from a realms field
40 #define RTNL_REALM_TO(realm) ((realm) & RTNL_REALM_MASK)
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
HttpAuthDatabaseTest.java 38 String realm = "testrealm"; local
42 String[] result = instance.getHttpAuthUsernamePassword(host, realm);
45 instance.setHttpAuthUsernamePassword(host, realm, userName, password);
46 result = instance.getHttpAuthUsernamePassword(host, realm);
52 instance.setHttpAuthUsernamePassword(host, realm, userName, newPassword);
53 result = instance.getHttpAuthUsernamePassword(host, realm);
59 instance.setHttpAuthUsernamePassword(host, realm, newUserName, newPassword);
60 result = instance.getHttpAuthUsernamePassword(host, realm);
65 instance.setHttpAuthUsernamePassword(host, realm, null, password);
66 result = instance.getHttpAuthUsernamePassword(host, realm);
    [all...]
  /external/chromium_org/net/http/
http_auth_handler_basic.cc 21 // Parses a realm from an auth challenge, and converts to UTF8-encoding.
22 // Returns whether the realm is invalid or the parameters are invalid.
24 // Note that if a realm was not specified, we will default it to "";
25 // so specifying 'Basic realm=""' is equivalent to 'Basic'.
28 // production of challenge that realm is required.
31 // include a realm (see http://crbug.com/20984.)
33 // The over-the-wire realm is encoded as ISO-8859-1 (aka Latin-1).
35 // TODO(cbentzel): Realm may need to be decoded using RFC 2047 rules as
38 std::string* realm) {
39 CHECK(realm);
82 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).
38 // The case-sensitive realm string of the challenge.
39 const std::string realm() const { function in class:net::HttpAuthCache::Entry
73 // Adds a path defining the realm's protection space. If the path is
77 // Returns true if |dir| is contained within the realm's protection
98 // List of paths that define the realm's protection space.
117 // Find the realm entry on server |origin| for realm |realm| an
    [all...]
http_auth_cache.cc 79 // Performance: O(n), where n is the number of realm entries.
81 const std::string& realm,
86 // Linear scan through the realm entries.
89 if (it->origin() == origin && it->realm() == realm &&
97 return NULL; // No realm entry found.
100 // Performance: O(n*m), where n is the number of realm entries, m is the number
101 // of path entries per realm. Both n amd m are expected to be small; m is
118 // Linear scan through the realm entries.
136 const std::string& realm,
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
OkAuthenticator.java 55 private final String realm; field in class:OkAuthenticator.Challenge
57 public Challenge(String scheme, String realm) {
59 this.realm = realm;
69 return realm;
75 && ((Challenge) o).realm.equals(realm);
79 return scheme.hashCode() + 31 * realm.hashCode();
83 return scheme + " realm=\"" + realm + "\""
    [all...]
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 39 * a port number, a realm name and an authentication scheme name which
66 * The <tt>null</tt> value represents any realm.
76 * Default scope matching any host, port, realm and authentication scheme.
85 /** The realm the credentials apply to. */
86 private final String realm; field in class:AuthScope
95 * <tt>host</tt>, <tt>port</tt>, <tt>realm</tt>, and
104 * @param realm the realm the credentials apply to. May be set
106 * any realm.
112 final String realm, final String scheme
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AccountManager.java 13 * @param realm - the realm that is being challenged for which a credential should be
18 UserCredentials getCredentials(ClientTransaction challengedTransaction, String realm);
SecureAccountManager.java 12 * @param realm - the realm that is being challenged for which a credential should be
17 UserCredentialHash getCredentialHash(ClientTransaction challengedTransaction, String realm);
  /external/chromium_org/components/auto_login_parser/
auto_login_parser.cc 21 bool MatchRealm(const std::string& realm, RealmRestriction restriction) {
24 return realm == "com.google";
59 if (key == "realm") {
62 local_params.realm = unescaped_value;
69 if (local_params.realm.empty() || local_params.args.empty())
auto_login_parser_unittest.cc 16 return header.realm.empty() && header.account.empty() &&
23 "realm=com.google&"
30 ASSERT_EQ("com.google", header_data.realm);
37 "realm=com.microsoft&"
59 "realm=com.google&"
69 "realm=com.google&"
74 ASSERT_EQ("com.google", header_data.realm);
80 "realm=com.microsoft&"
87 ASSERT_EQ("com.microsoft", header_data.realm);
auto_login_parser.h 25 // "realm" string from x-auto-login (e.g. "com.google").
26 std::string realm; member in struct:auto_login_parser::HeaderData
  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
http-auth-private-mode-changed.php 12 header('WWW-Authenticate: Basic realm="My Realm"');
  /external/iproute2/misc/
rtacct.c 159 int realm; local
171 , "Realm", "BytesTo", "PktsTo", "BytesFrom", "PktsFrom");
183 for (realm=0; realm<256; realm++) {
188 if (!(rmap[realm>>5] & (1<<(realm&0x1f))))
191 val = &kern_db->val[realm*4];
192 rate = &kern_db->rate[realm*4];
202 memcpy(&hist_db->val[realm*4], val, sizeof(*val)*4)
221 int k, realm; local
492 __u32 realm; local
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
HttpAuthHandlerTest.java 66 String realm; field in class:HttpAuthHandlerTest.ProceedHttpAuthClient
83 HttpAuthHandler handler, String host, String realm) {
89 this.realm = realm;
97 String realm; field in class:HttpAuthHandlerTest.CancelHttpAuthClient
105 HttpAuthHandler handler, String host, String realm) {
106 this.realm = realm;
119 assertEquals(CtsTestServer.AUTH_REALM, client.realm);
131 assertEquals(CtsTestServer.AUTH_REALM, client.realm);
    [all...]
  /external/chromium_org/chrome/browser/ui/android/infobars/
auto_login_infobar_delegate_android.h 32 const std::string& realm() const { return params_.header.realm; } function in class:AutoLoginInfoBarDelegateAndroid
  /external/chromium_org/components/autofill/core/common/
password_form_fill_data.h 26 std::string realm; member in struct:autofill::UsernamesCollectionKey
31 std::string realm; member in struct:autofill::PasswordAndRealm
35 // struct are only set when the password's realm differs from the realm of the
46 // The signon realm of the preferred user/pass pair.
password_form_fill_data.cc 23 return realm < other.realm;
65 value.realm = iter->second->original_signon_realm;
77 key.realm = iter->second->original_signon_realm;
  /external/chromium_org/net/base/
auth.cc 17 this->realm == that.realm);
  /external/chromium_org/chrome/browser/ui/login/
login_prompt_unittest.cc 15 auth_info->realm = "WallyWorld";
  /external/iproute2/ip/
rtm_map.c 98 __u32 realm = 0; local
112 if (*arg && rtnl_rtrealm_a2n(&realm, arg))
114 *realms |= realm;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
HttpAuthDatabase.java 46 private static final String HTTPAUTH_REALM_COL = "realm";
167 * @param realm the realm for the password
171 public void setHttpAuthUsernamePassword(String host, String realm, String username,
173 if (host == null || realm == null || !waitForInit()) {
179 c.put(HTTPAUTH_REALM_COL, realm);
186 * Retrieves the HTTP authentication username and password for a given host and realm pair. If
187 * there are multiple username/password combinations for a host/realm, only the first one will
191 * @param realm the realm the password applies t
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
save_password_infobar_delegate.cc 30 GURL realm(form_to_save->realm());
35 if (((realm == GaiaUrls::GetInstance()->gaia_login_form_realm()) ||
36 (realm == GURL("https://www.google.com/"))) &&
  /external/chromium_org/chrome/utility/importer/
nss_decryptor.cc 174 // For HTTP authentication logins, the URL may contain http realm,
176 // sitename:8080 (realm)
178 std::string realm; local
192 realm = lines[begin].substr(start, end - start);
194 // Don't have http realm. It is the URL that the following passwords
203 if (!realm.empty())
204 form.signon_realm += realm;
275 std::string realm(s2.ColumnString(1));
276 if (!realm.empty()) {
292 if (!realm.empty())
    [all...]

Completed in 4653 milliseconds

1 2 3 4 5