HomeSort by relevance Sort by last modified time
    Searched refs:auth (Results 101 - 125 of 624) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/extensions/
security.h 46 void XSecurityFreeXauth(Xauth *auth);
48 /* type for returned auth ids */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/rpc/
auth_unix.h 47 #include <rpc/auth.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
security.h 46 void XSecurityFreeXauth(Xauth *auth);
48 /* type for returned auth ids */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpc/
auth_unix.h 47 #include <rpc/auth.h>
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
Sources.java 205 final AuthenticatorDescription auth = findAuthenticator(auths, accountType); local
209 source = new GoogleSource(auth.packageName);
211 source = new ExchangeSource(auth.packageName);
215 + ", packageName=" + auth.packageName);
216 source = new ExternalSource(auth.packageName);
220 source.accountType = auth.type;
221 source.titleRes = auth.labelId;
222 source.iconRes = auth.iconId;
237 for (AuthenticatorDescription auth : auths) {
238 if (accountType.equals(auth.type))
    [all...]
  /cts/tools/signature-tools/
sig-check 104 javax.security.auth \
105 javax.security.auth.callback \
106 javax.security.auth.login \
107 javax.security.auth.x500 \
sig-create 101 javax.security.auth \
102 javax.security.auth.callback \
103 javax.security.auth.login \
104 javax.security.auth.x500 \
  /external/apache-http/src/org/apache/http/impl/auth/
RFC2617Scheme.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/auth/RFC2617Scheme.java $
31 package org.apache.http.impl.auth;
38 import org.apache.http.auth.MalformedChallengeException;
  /external/apache-http/src/org/apache/http/impl/client/
BasicCredentialsProvider.java 35 import org.apache.http.auth.AuthScope;
36 import org.apache.http.auth.Credentials;
  /external/chromium_org/chrome/browser/supervised_user/chromeos/
manager_password_service.cc 11 #include "chrome/browser/chromeos/login/auth/key.h"
12 #include "chrome/browser/chromeos/login/auth/user_context.h"
83 SupervisedUserAuthentication* auth = local
86 if (!auth->NeedPasswordChange(user->email(), dict) &&
87 !auth->HasIncompleteKey(user->email())) {
197 SupervisedUserAuthentication* auth = local
199 int old_schema = auth->GetPasswordSchema(user_id);
200 auth->StorePasswordData(user_id, *password_data.get());
202 if (auth->HasIncompleteKey(user_id))
203 auth->MarkKeyIncomplete(user_id, false /* key is complete now */)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmpppump.cc 42 buzz::PreXmppAuth* auth) {
46 client_->Connect(xcs, "", socket, auth);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpAuthenticator.java 50 PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(url.getHost(),
53 if (auth != null) {
54 return Credential.basic(auth.getUserName(), new String(auth.getPassword()));
69 PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(
73 if (auth != null) {
74 return Credential.basic(auth.getUserName(), new String(auth.getPassword()));
127 // auth-scheme = token
128 // auth-param = token "=" ( token | quoted-string
    [all...]
  /external/ppp/pppd/
Android.mk 14 auth.c \
  /external/smack/src/org/apache/harmony/javax/security/auth/login/
Configuration.java 18 package org.apache.harmony.javax.security.auth.login;
21 import org.apache.harmony.javax.security.auth.AuthPermission;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/
DestroyFailedExceptionTest.java 18 package org.apache.harmony.tests.javax.security.auth;
21 import javax.security.auth.DestroyFailedException;
37 * javax.security.auth.DestroyFailedException#DestroyFailedException()
47 * javax.security.auth.DestroyFailedException#DestroyFailedException(String msg)
60 * javax.security.auth.DestroyFailedException#DestroyFailedException(String msg)
  /external/smack/src/org/apache/qpid/management/common/sasl/
PlainSaslClient.java 23 import org.apache.harmony.javax.security.auth.callback.Callback;
24 import org.apache.harmony.javax.security.auth.callback.CallbackHandler;
25 import org.apache.harmony.javax.security.auth.callback.NameCallback;
26 import org.apache.harmony.javax.security.auth.callback.PasswordCallback;
27 import org.apache.harmony.javax.security.auth.callback.UnsupportedCallbackException;
142 return "auth";
  /external/wpa_supplicant_8/wpa_supplicant/
ibss_rsn.c 42 wpa_auth_sta_deinit(peer->auth);
253 wpa_printf(MSG_DEBUG, "AUTH: " MACSTR " - %s",
256 wpa_printf(MSG_DEBUG, "AUTH: %s", txt);
264 wpa_printf(MSG_DEBUG, "AUTH: %s (addr=" MACSTR " prev_psk=%p)",
278 wpa_printf(MSG_DEBUG, "AUTH: %s(addr=" MACSTR " data_len=%lu "
299 wpa_printf(MSG_DEBUG, "AUTH: %s(alg=%d addr=" MACSTR
303 wpa_printf(MSG_DEBUG, "AUTH: %s(alg=%d key_idx=%d)",
306 wpa_hexdump_key(MSG_DEBUG, "AUTH: set_key - key", key, key_len);
324 wpa_printf(MSG_DEBUG, "AUTH: Do not use this PTK");
348 wpa_printf(MSG_DEBUG, "AUTH: for_each_sta")
478 struct ieee80211_mgmt auth; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/auth/
extended_authenticator.cc 5 #include "chrome/browser/chromeos/login/auth/extended_authenticator.h"
11 #include "chrome/browser/chromeos/login/auth/key.h"
12 #include "chrome/browser/chromeos/login/auth/login_status_consumer.h"
13 #include "chrome/browser/chromeos/login/auth/user_context.h"
93 cryptohome::Authorization auth(keys.front());
105 auth,
201 cryptohome::Authorization auth(key->GetSecret(), key->GetLabel());
206 auth,
225 cryptohome::Authorization auth(key->GetSecret(), key->GetLabel());
229 auth,
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/http/
DefaultHttpClientTest.java 31 import org.apache.http.auth.AuthenticationException;
32 import org.apache.http.auth.UsernamePasswordCredentials;
34 import org.apache.http.impl.auth.DigestScheme;
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KSPasswordProtectionTest.java 25 import javax.security.auth.DestroyFailedException;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs7/
SignerInfoTest.java 24 import javax.security.auth.x500.X500Principal;
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/
URIParameterTest.java 22 import javax.security.auth.login.Configuration;
  /external/apache-http/src/org/apache/http/auth/
AuthState.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/AuthState.java $
31 package org.apache.http.auth;
139 buffer.append("auth scope [");
BasicUserPrincipal.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/BasicUserPrincipal.java $
31 package org.apache.http.auth;
  /external/apache-http/src/org/apache/http/client/protocol/
ClientContextConfigurer.java 36 import org.apache.http.auth.AuthSchemeRegistry;

Completed in 5147 milliseconds

1 2 3 45 6 7 8 91011>>