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

1 2

  /libcore/luni/src/main/java/javax/security/auth/login/
LoginException.java 18 package javax.security.auth.login;
23 * Base class for exceptions that are thrown when a login error occurs.
  /libcore/luni/src/main/java/java/security/
AuthProvider.java 22 import javax.security.auth.login.LoginException;
26 * Provider} which provide login and logout.
51 * Performs a login into this {@code AuthProvider}. The specified {@code
60 * the subject that is used to login.
65 * if the login fails.
70 public abstract void login(Subject subject, CallbackHandler handler) throws LoginException; method in class:AuthProvider
90 * handler is passed to the {@link #login(Subject, CallbackHandler)} method,
95 * auth.login.defaultCallbackHandler} security property.
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Animation1.java 36 View loginButton = findViewById(R.id.login);
  /external/webkit/WebKit/gtk/webkit/
webkitsoupauthdialog.c 181 static void show_auth_dialog(WebKitAuthData* authData, const char* login, const char* password)
270 login, NULL);
281 if (login && password)
300 const char *login, *password; local
313 login = password = NULL;
318 login = users->data;
319 password = soup_auth_get_saved_password(auth, login);
324 show_auth_dialog(authData, login, password);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
AuthProviderTest.java 54 method = "login",
94 ap.login(null, handler);
105 public void login(Subject subject, CallbackHandler handler) {} method in class:AuthProviderTest.AuthProviderStub
  /libcore/luni/src/test/java/tests/support/
Support_SQL.java 78 public static Connection getConnection(String url, String login,
81 return DriverManager.getConnection(url, login, password);
  /external/ipsec-tools/src/racoon/
isakmp_xauth.h 82 vchar_t *login; /* xauth login */ member in struct:xauth_rmconf
isakmp_xauth.c 265 strncpy(iph1->mode_cfg->login, usr, LOGINLEN);
266 iph1->mode_cfg->login[LOGINLEN] = '\0';
387 "login failed for user \"%s\"\n", usr);
403 "login succeeded for user \"%s\"\n", usr);
1206 /* No root login. Ever. */
    [all...]
admin.c 315 "malformed message (login too long)\n");
445 if (rmconf->xauth->login != NULL) {
446 vfree(rmconf->xauth->login);
447 rmconf->xauth->login = NULL;
454 rmconf->xauth->login = id;
isakmp_cfg.h 149 char login[LOGINLEN + 1]; /* login */ member in struct:isakmp_cfg_state
handler.c 1536 getph1bylogin(login)
1537 char *login;
1544 if (strncmp(p->mode_cfg->login, login, LOGINLEN) == 0)
1552 purgeph1bylogin(login)
1553 char *login;
1561 if (strncmp(p->mode_cfg->login, login, LOGINLEN) == 0) {
isakmp_cfg.c     [all...]
cfparse.y     [all...]
  /libcore/luni/src/test/java/tests/api/javax/security/auth/
LoginExceptionTest.java 26 import javax.security.auth.login.LoginException;
54 * @tests javax.security.auth.login.LoginException#LoginException()
70 * @tests javax.security.auth.login.LoginException#LoginException(String msg)
89 * @tests javax.security.auth.login.LoginException#LoginException(String msg)
  /bionic/libc/bionic/
stubs.c 273 getpwnam(const char *login)
280 if (android_name_to_passwd(&state->passwd, login) != NULL)
283 return app_id_to_passwd( app_id_from_name(login), state );
  /frameworks/base/policy/src/com/android/internal/policy/impl/
AccountUnlockScreen.java 52 * account's login/password to unlock the phone (and reset their lock pattern).
103 mLogin = (EditText) findViewById(R.id.login);
134 // send focus to the login field
274 final String login = mLogin.getText().toString(); local
276 Account account = findIntendedAccount(login);
  /external/webkit/WebCore/platform/network/cf/
SocketStreamHandleCFNet.cpp 351 static bool getStoredCONNECTProxyCredentials(const ProtectionSpace& protectionSpace, String& login, String& password)
361 login = storedCredential.user();
398 String login; local
400 if (!m_sentStoredCredentials && getStoredCONNECTProxyCredentials(protectionSpace, login, password)) {
402 RetainPtr<CFStringRef> loginCF(AdoptCF, login.createCFString());
  /external/libpcap/lbl/
os-sunos4.h 120 void login(struct utmp *);
  /external/tcpdump/lbl/
os-sunos4.h 120 void login(struct utmp *);
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
PicasaContentProvider.java 119 if (context.login(photo.syncAccount)) {
132 if (context.login(album.syncAccount)) {
196 if ((album.photosDirty || forceRefresh) && context.login(album.syncAccount)) {
554 public boolean login(String user) { method in class:PicasaContentProvider.SyncContext
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/
FtpURLConnection.java 224 login(); method
372 private void login() throws IOException { method in class:FtpURLConnection
  /external/dropbear/
loginrec.c 29 ** loginrec.c: platform-independent login recording and lastlog retrieval
35 The new login code explained
38 This code attempts to provide a common interface to login recording
39 (utmp and friends) and last login time retrieval.
43 system login record structures one finds on UNIX variants.
55 For login recording, we try to use the local system's libraries as
57 this usually means login() and logout() or setutent() etc., probably
70 Retrieving the time of last login ('lastlog') is in some ways even
71 more problemmatic than login recording. Some systems provide a
76 we look backwards in the wtmp or wtmpx file for the last login entr
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 546 milliseconds

1 2