/external/openssh/ |
D | auth1.c | 117 int authenticated = 0; in auth1_process_password() local 131 authenticated = PRIVSEP(auth_password(authctxt, password)); in auth1_process_password() 135 authenticated = 0; in auth1_process_password() 141 return (authenticated); in auth1_process_password() 148 int authenticated = 0; in auth1_process_rsa() local 156 authenticated = auth_rsa(authctxt, n); in auth1_process_rsa() 159 return (authenticated); in auth1_process_rsa() 166 int keybits, authenticated = 0; in auth1_process_rhosts_rsa() local 192 authenticated = auth_rhosts_rsa(authctxt, client_user, in auth1_process_rhosts_rsa() 198 return (authenticated); in auth1_process_rhosts_rsa() [all …]
|
D | auth2.c | 219 int authenticated = 0; in input_userauth_request() local 283 authenticated = m->userauth(authctxt); in input_userauth_request() 285 userauth_finish(authctxt, authenticated, method); in input_userauth_request() 293 userauth_finish(Authctxt *authctxt, int authenticated, char *method) in userauth_finish() argument 297 if (!authctxt->valid && authenticated) in userauth_finish() 302 if (authenticated && authctxt->pw->pw_uid == 0 && in userauth_finish() 304 authenticated = 0; in userauth_finish() 311 if (options.use_pam && authenticated) { in userauth_finish() 326 if (authenticated && cray_access_denied(authctxt->user)) { in userauth_finish() 327 authenticated = 0; in userauth_finish() [all …]
|
D | auth2-kbdint.c | 47 int authenticated = 0; in userauth_kbdint() local 57 authenticated = auth2_challenge(authctxt, devs); in userauth_kbdint() 61 return authenticated; in userauth_kbdint()
|
D | auth2-passwd.c | 53 int authenticated = 0; in userauth_passwd() local 72 authenticated = 1; in userauth_passwd() 76 return authenticated; in userauth_passwd()
|
D | auth-chall.c | 85 int authenticated = 0; in verify_response() local 94 authenticated = 1; in verify_response() 102 authenticated = 1; in verify_response() 114 return authenticated; in verify_response()
|
D | auth2-gss.c | 233 int authenticated; in input_gssapi_exchange_complete() local 247 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user)); in input_gssapi_exchange_complete() 254 userauth_finish(authctxt, authenticated, "gssapi-with-mic"); in input_gssapi_exchange_complete() 262 int authenticated = 0; in input_gssapi_mic() local 282 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user)); in input_gssapi_mic() 294 userauth_finish(authctxt, authenticated, "gssapi-with-mic"); in input_gssapi_mic()
|
D | auth2-hostbased.c | 65 int authenticated = 0; in userauth_hostbased() local 120 authenticated = 0; in userauth_hostbased() 124 authenticated = 1; in userauth_hostbased() 128 debug2("userauth_hostbased: authenticated %d", authenticated); in userauth_hostbased() 136 return authenticated; in userauth_hostbased()
|
D | auth2-pubkey.c | 76 int authenticated = 0; in userauth_pubkey() local 141 authenticated = 0; in userauth_pubkey() 145 authenticated = 1; in userauth_pubkey() 169 if (authenticated != 1) in userauth_pubkey() 172 debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg); in userauth_pubkey() 177 return authenticated; in userauth_pubkey()
|
D | monitor.c | 355 int authenticated = 0; in monitor_child_preauth() local 381 while (!authenticated) { in monitor_child_preauth() 383 authenticated = (monitor_read(pmonitor, mon_dispatch, &ent) == 1); in monitor_child_preauth() 384 if (authenticated) { in monitor_child_preauth() 390 authenticated = 0; in monitor_child_preauth() 393 if (options.use_pam && authenticated) { in monitor_child_preauth() 399 authenticated = mm_answer_pam_account(pmonitor->m_sendfd, &m); in monitor_child_preauth() 406 auth_log(authctxt, authenticated, auth_method, in monitor_child_preauth() 408 if (!authenticated) in monitor_child_preauth() 846 int authenticated; in mm_answer_authpassword() local [all …]
|
D | auth.c | 254 auth_log(Authctxt *authctxt, int authenticated, char *method, char *info) in auth_log() argument 263 if (authenticated == 1 || in auth_log() 272 authmsg = authenticated ? "Accepted" : "Failed"; in auth_log() 284 if (authenticated == 0 && !authctxt->postponed && in auth_log() 291 if (authenticated) in auth_log() 297 if (authenticated == 0 && !authctxt->postponed) in auth_log()
|
D | auth2-chall.c | 284 int authenticated = 0, res; in input_userauth_info_response() local 321 authenticated = authctxt->valid ? 1 : 0; in input_userauth_info_response() 336 if (authenticated) { in input_userauth_info_response() 344 userauth_finish(authctxt, authenticated, method); in input_userauth_info_response()
|
D | auth2-jpake.c | 84 int authenticated = 0; in userauth_jpake() local 94 authenticated = auth2_jpake_start(authctxt); in userauth_jpake() 97 return authenticated; in userauth_jpake() 535 int authenticated = 0; in input_userauth_jpake_client_confirm() local 551 authenticated = authctxt->valid ? 1 : 0; in input_userauth_jpake_client_confirm() 559 userauth_finish(authctxt, authenticated, method_jpake.name); in input_userauth_jpake_client_confirm()
|
D | monitor_wrap.c | 346 int authenticated = 0; in mm_auth_password() local 357 authenticated = buffer_get_int(&m); in mm_auth_password() 362 __func__, authenticated ? "" : "not "); in mm_auth_password() 363 return (authenticated); in mm_auth_password() 1278 int authenticated = 0; in mm_ssh_gssapi_userok() local 1286 authenticated = buffer_get_int(&m); in mm_ssh_gssapi_userok() 1289 debug3("%s: user %sauthenticated",__func__, authenticated ? "" : "not "); in mm_ssh_gssapi_userok() 1290 return (authenticated); in mm_ssh_gssapi_userok()
|
D | auth.h | 51 int authenticated; /* authenticated and alarms cancelled */ member
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
D | Connection.java | 90 private boolean authenticated = false; field in Connection 180 if (authenticated) in authenticateWithDSA() 195 …authenticated = am.authenticatePublicKey(user, pem.toCharArray(), password, getOrCreateSecureRND()… in authenticateWithDSA() 197 return authenticated; in authenticateWithDSA() 261 if (authenticated) in authenticateWithKeyboardInteractive() 273 authenticated = am.authenticateInteractive(user, submethods, cb); in authenticateWithKeyboardInteractive() 275 return authenticated; in authenticateWithKeyboardInteractive() 307 if (authenticated) in authenticateWithPassword() 322 authenticated = am.authenticatePassword(user, password); in authenticateWithPassword() 324 return authenticated; in authenticateWithPassword() [all …]
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/auth/ |
D | AuthenticationManager.java | 53 private boolean authenticated = false; field in AuthenticationManager 161 authenticated = true; in initialize() 177 return authenticated; in initialize() 260 authenticated = true; in authenticatePublicKey() 290 return authenticated; in authenticateNone() 315 authenticated = true; in authenticatePassword() 364 authenticated = true; in authenticateInteractive()
|
/external/ppp/pppd/plugins/ |
D | winbind.c | 269 int authenticated = NOT_AUTHENTICATED; /* not auth */ in run_ntlm_auth() local 412 authenticated = AUTHENTICATED; in run_ntlm_auth() 415 authenticated = NOT_AUTHENTICATED; in run_ntlm_auth() 427 authenticated = NOT_AUTHENTICATED; in run_ntlm_auth() 431 authenticated = NOT_AUTHENTICATED; in run_ntlm_auth() 454 if ((authenticated == AUTHENTICATED) && nt_key && !got_user_session_key) { in run_ntlm_auth() 458 return authenticated; in run_ntlm_auth()
|
/external/apache-harmony/support/src/test/java/tests/support/ |
D | Support_HttpServer.java | 220 boolean authenticated = false, contentLength = false, chunked = false; in run() 236 authenticated = true; in run() 270 authenticateTest(authenticated); in run() 336 private void authenticateTest(boolean authenticated) { in authenticateTest() argument 346 if (!authenticated) { in authenticateTest()
|
/external/chromium/chrome/browser/sync/engine/ |
D | all_status.cc | 84 const bool online = status_.authenticated && in CalcStatusChanges() 128 status_.authenticated = true; in HandleServerConnectionEvent() 130 status_.authenticated = false; in HandleServerConnectionEvent()
|
/external/dbus/dbus/ |
D | dbus-transport.c | 164 transport->authenticated = FALSE; in _dbus_transport_init_base() 696 if (transport->authenticated) in _dbus_transport_get_is_authenticated() 788 transport->authenticated = maybe_authenticated; in _dbus_transport_get_is_authenticated() 806 if (!transport->authenticated) in _dbus_transport_get_is_anonymous() 1296 if (!transport->authenticated) in _dbus_transport_get_unix_user() 1329 if (!transport->authenticated) in _dbus_transport_get_unix_process_id() 1362 if (!transport->authenticated) in _dbus_transport_get_adt_audit_session_data() 1419 if (!transport->authenticated) in _dbus_transport_get_windows_user()
|
D | dbus-transport-protected.h | 114 …unsigned int authenticated : 1; /**< Cache of auth state; use _dbus_transport_get_is_a… member
|
/external/chromium/chrome/browser/sync/ |
D | sync_ui_util.cc | 107 if (status.authenticated && !service->observed_passphrase_required()) { in GetStatusInfo() 166 } else if (!status.authenticated) { in GetStatusInfo() 342 new FundamentalValue(full_status.authenticated)); in ConstructAboutInformation()
|
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/ |
D | bugzilla.py | 211 self.authenticated = False 400 if self.authenticated: 405 self.authenticated = True 411 while not self.authenticated: 434 self.authenticated = True
|
/external/chromium/testing/gmock/scripts/ |
D | upload.py | 145 self.authenticated = False 237 self.authenticated = True 310 if not self.authenticated: 373 self.authenticated = True 490 server.authenticated = True
|
/external/chromium/testing/gtest/scripts/ |
D | upload.py | 145 self.authenticated = False 237 self.authenticated = True 310 if not self.authenticated: 373 self.authenticated = True 490 server.authenticated = True
|