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

1 2 3 4

  /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/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);
CredentialsCache.java 72 String realm = authorization.getRealm(); local
75 if ( realm.equals(authHeader.getRealm()) ) {
  /external/webkit/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())
ProtectionSpace.h 56 ProtectionSpace(const String& host, int port, ProtectionSpaceServerType, const String& realm, ProtectionSpaceAuthenticationScheme);
66 const String& realm() const;
ProtectionSpaceHash.h 42 protectionSpace.realm().impl() ? protectionSpace.realm().impl()->hash() : 0
46 // Ignore realm for proxies.
  /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/chromium/net/http/
http_auth_cache.h 19 // TODO(eroman): Can we change the key from (origin, realm) to
20 // (origin, realm, auth_scheme)?
23 // For each realm the cache stores a HttpAuthCache::Entry, which holds:
24 // - the realm name
28 // - the list of paths which used this realm
29 // Entries can be looked up by either (origin, realm) or (origin, path).
34 // Find the realm entry on server |origin| for realm |realm|.
36 // |realm| - case sensitive realm string
97 const std::string realm() const { function in class:net::HttpAuthCache::Entry
    [all...]
http_auth_cache.cc 62 // Performance: O(n), where n is the number of realm entries.
64 const std::string& realm) {
67 // Linear scan through the realm entries.
69 if (it->origin() == origin && it->realm() == realm)
72 return NULL; // No realm entry found.
75 // Performance: O(n*m), where n is the number of realm entries, m is the number
76 // of path entries per realm. Both n amd m are expected to be small; m is
89 // Linear scan through the realm entries.
106 HttpAuthCache::Entry* entry = LookupByRealm(origin, handler->realm());
    [all...]
  /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 92 assertEquals(CtsTestServer.AUTH_REALM, client.realm);
101 assertEquals(CtsTestServer.AUTH_REALM, client.realm);
111 assertEquals(CtsTestServer.AUTH_REALM, client.realm);
129 assertEquals(CtsTestServer.AUTH_REALM, client.realm);
145 String realm; field in class:HttpAuthHandlerTest.MyWebViewClient
159 HttpAuthHandler handler, String host, String realm) {
160 this.realm = realm;
  /external/iproute2/ip/
rtm_map.c 98 __u32 realm = 0; local
112 if (*arg && rtnl_rtrealm_a2n(&realm, arg))
114 *realms |= realm;
  /external/webkit/WebKit/win/
WebURLProtectionSpace.h 60 /* [in] */ BSTR realm,
67 /* [in] */ BSTR realm,
82 virtual HRESULT STDMETHODCALLTYPE realm(
WebURLProtectionSpace.cpp 152 /* [in] */ BSTR realm,
173 String(realm, SysStringLen(realm)), coreScheme(authenticationMethod));
182 /* [in] */ BSTR realm,
203 String(realm, SysStringLen(realm)), coreScheme(authenticationMethod));
268 HRESULT STDMETHODCALLTYPE WebURLProtectionSpace::realm( function in class:WebURLProtectionSpace
271 BString bstring = m_protectionSpace.realm();
  /external/chromium/net/base/
auth.h 23 std::wstring realm; // the realm provided by the server, if there is one. member in class:net::AuthChallengeInfo
  /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);
  /frameworks/base/core/java/android/webkit/
HttpAuthHandler.java 265 String realm = loader.realm(); local
267 proxy.onReceivedHttpAuthRequest(this, hostname, realm);
276 String host, String realm, String username, String password) {
278 proxy.onReceivedHttpAuthCredentials(host, realm, username, password);
  /external/webkit/WebKit/mac/Panels/
WebAuthenticationPanel.m 131 NSString *realm = [space realm];
134 // Consider the realm name to be "simple" if it does not contain any whitespace or newline characters.
135 // If the realm name is determined to be complex, we will use a slightly different sheet layout, designed
136 // to keep a malicious realm name from spoofing the wording in the sheet text.
137 BOOL realmNameIsSimple = [realm rangeOfCharacterFromSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]].location == NSNotFound;
147 "prompt string in authentication panel"), realm, host];
160 "prompt string in authentication panel"), realm, host];
169 [separateRealmLabel setStringValue:realm];
174 // In the proxy or "simple" realm name case, we need to hide the 'separateRealmLabel
    [all...]
  /external/nist-sip/java/javax/sip/header/
AuthorizationHeader.java 28 void setRealm(String realm) throws ParseException;
  /external/webkit/WebCore/platform/network/cf/
AuthenticationCF.cpp 172 CFStringRef realm = coreSpace.realm().createCFString(); local
173 CFURLProtectionSpaceRef result = CFURLProtectionSpaceCreate(0, host, coreSpace.port(), serverType, realm, scheme);
175 CFRelease(realm);
  /external/openssl/include/openssl/
kssl.h 158 krb5_data *realm, krb5_data *entity, int nentities);
167 krb5_principal *princ, int rlen, const char *realm,
  /external/openssl/ssl/
kssl.h 158 krb5_data *realm, krb5_data *entity, int nentities);
167 krb5_principal *princ, int rlen, const char *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...]
  /external/webkit/WebKit/win/Interfaces/
IWebURLAuthenticationChallenge.idl 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);
181 -(NSString *)realm
183 HRESULT realm([out, retval] BSTR* result);

Completed in 803 milliseconds

1 2 3 4