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

1 2

  /dalvik/libcore/auth/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.
  /dalvik/libcore/security/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.
  /packages/apps/IM/src/com/android/im/
IImConnection.aidl 36 * Login the IM server.
42 * automatically after the user successfully login; otherwise, the
45 void login(long accountId, String userName, String password, boolean autoLoadContacts);
  /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);
  /packages/apps/IM/src/com/android/im/imps/
ImpsConnection.java 189 LoginTransaction login = new LoginTransaction(); local
190 login.startAuthenticate();
211 Primitive login = buildBasicLoginReq(); local
213 // first login request of 4 way login
216 login.addElement(ImpsTags.DigestSchema, element);
219 // 2 way login
220 login.addElement(ImpsTags.Password, mSession.getPassword());
222 sendRequest(login);
229 // got the final Login-Response before the 2nd Login-Request
742 Primitive login = new Primitive(ImpsTags.Login_Request); local
    [all...]
  /dalvik/libcore/security/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
  /dalvik/libcore/sql/src/test/java/tests/support/
Support_SQL.java 78 public static Connection getConnection(String url, String login,
81 return DriverManager.getConnection(url, login, password);
  /dalvik/libcore/security/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)
  /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...]
  /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/policies/base/phone/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
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/
FtpURLConnection.java 225 login(); method
377 private void login() throws IOException { method in class:FtpURLConnection
  /packages/apps/IM/src/com/android/im/app/
SigningInActivity.java 180 mConn.login(mAccountId, mUserName, mPassword, true);
  /packages/apps/IM/src/com/android/im/service/
ImConnectionAdapter.java 143 public void login(long accountId, String userName, String password, method in class:ImConnectionAdapter
349 // A bit tricky here. The engine did login successfully
RemoteImService.java 135 // Check and login accounts if network is ready, otherwise it's checked
147 Log.d(TAG, "Scaning accounts and login automatically");
167 conn.login(accountId, username, password, true);
169 Log.w(TAG, "Logging error while automatically login!");

Completed in 787 milliseconds

1 2