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

1 2 3 4

  /external/openssh/
auth2-kbdint.c 47 int authenticated = 0; local
57 authenticated = auth2_challenge(authctxt, devs);
61 return authenticated;
auth2-passwd.c 53 int authenticated = 0; local
72 authenticated = 1;
76 return authenticated;
auth1.c 117 int authenticated = 0; local
131 authenticated = PRIVSEP(auth_password(authctxt, password));
135 authenticated = 0;
141 return (authenticated);
148 int authenticated = 0; local
156 authenticated = auth_rsa(authctxt, n);
159 return (authenticated);
166 int keybits, authenticated = 0; local
192 authenticated = auth_rhosts_rsa(authctxt, client_user,
198 return (authenticated);
224 int authenticated = 0; local
244 int authenticated = 0; local
    [all...]
auth-chall.c 85 int authenticated = 0; local
94 authenticated = 1;
102 authenticated = 1;
114 return authenticated;
auth2.c 219 int authenticated = 0; local
283 authenticated = m->userauth(authctxt);
285 userauth_finish(authctxt, authenticated, method);
293 userauth_finish(Authctxt *authctxt, int authenticated, char *method)
297 if (!authctxt->valid && authenticated)
298 fatal("INTERNAL ERROR: authenticated invalid user %s",
302 if (authenticated && authctxt->pw->pw_uid == 0 &&
304 authenticated = 0;
311 if (options.use_pam && authenticated) {
326 if (authenticated && cray_access_denied(authctxt->user))
    [all...]
auth2-hostbased.c 65 int authenticated = 0; local
120 authenticated = 0;
124 authenticated = 1;
128 debug2("userauth_hostbased: authenticated %d", authenticated);
136 return authenticated;
auth2-gss.c 233 int authenticated; local
247 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user));
254 userauth_finish(authctxt, authenticated, "gssapi-with-mic");
262 int authenticated = 0; local
282 authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user));
294 userauth_finish(authctxt, authenticated, "gssapi-with-mic");
auth2-pubkey.c 76 int authenticated = 0; local
141 authenticated = 0;
145 authenticated = 1;
169 if (authenticated != 1)
172 debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
177 return authenticated;
auth2-chall.c 284 int authenticated = 0, res; local
321 authenticated = authctxt->valid ? 1 : 0;
336 if (authenticated) {
344 userauth_finish(authctxt, authenticated, method);
auth.c 254 auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
263 if (authenticated == 1 ||
272 authmsg = authenticated ? "Accepted" : "Failed";
284 if (authenticated == 0 && !authctxt->postponed &&
291 if (authenticated)
297 if (authenticated == 0 && !authctxt->postponed)
auth2-jpake.c 22 * F. Hao, P. Ryan, "Password Authenticated Key Exchange by Juggling",
84 int authenticated = 0; local
94 authenticated = auth2_jpake_start(authctxt);
97 return authenticated;
535 int authenticated = 0; local
551 authenticated = authctxt->valid ? 1 : 0;
559 userauth_finish(authctxt, authenticated, method_jpake.name);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Connection.java 90 private boolean authenticated = false; field in class:Connection
167 * @return whether the connection is now authenticated.
180 if (authenticated)
181 throw new IllegalStateException("Connection is already authenticated!");
195 authenticated = am.authenticatePublicKey(user, pem.toCharArray(), password, getOrCreateSecureRND());
197 return authenticated;
209 * @return whether the connection is now authenticated.
249 * @return whether the connection is now authenticated.
261 if (authenticated)
262 throw new IllegalStateException("Connection is already authenticated!");
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/wayland/
native_drm.c 60 boolean authenticated; member in struct:wayland_drm_display
176 drmdpy->authenticated = true;
218 if (wayland_roundtrip(&drmdpy->base) < 0 || !drmdpy->authenticated)
246 boolean current_authenticate, authenticated; local
248 current_authenticate = drmdpy->authenticated;
252 authenticated = drmdpy->authenticated;
254 drmdpy->authenticated = current_authenticate;
256 return authenticated ? 0 : -1;
  /external/mesa3d/src/gallium/state_trackers/egl/wayland/
native_drm.c 60 boolean authenticated; member in struct:wayland_drm_display
176 drmdpy->authenticated = true;
218 if (wayland_roundtrip(&drmdpy->base) < 0 || !drmdpy->authenticated)
246 boolean current_authenticate, authenticated; local
248 current_authenticate = drmdpy->authenticated;
252 authenticated = drmdpy->authenticated;
254 drmdpy->authenticated = current_authenticate;
256 return authenticated ? 0 : -1;
  /external/chromium_org/remoting/host/
client_session_unittest.cc 87 // authenticated and channels have been connected. This effectively enables
245 Expectation authenticated = local
249 .After(authenticated);
251 .After(authenticated);
259 .After(authenticated)
275 // because the client isn't authenticated yet.
328 Expectation authenticated = local
332 .After(authenticated);
334 .After(authenticated);
342 .After(authenticated)
383 Expectation authenticated = local
440 Expectation authenticated = local
483 Expectation authenticated = local
    [all...]
  /frameworks/base/core/java/com/android/internal/policy/
IKeyguardService.aidl 32 oneway void keyguardDone(boolean authenticated, boolean wakeup);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/auth/
AuthenticationManager.java 53 private boolean authenticated = false; field in class:AuthenticationManager
161 authenticated = true;
177 return authenticated;
260 authenticated = true;
290 return authenticated;
315 authenticated = true;
364 authenticated = true;
  /external/chromium/chrome/browser/sync/engine/
all_status.cc 84 const bool online = status_.authenticated &&
128 status_.authenticated = true;
130 status_.authenticated = false;
  /external/smack/src/org/jivesoftware/smack/
BOSHConnection.java 84 private boolean authenticated = false; field in class:BOSHConnection
110 * The full JID of the authenticated user.
287 return authenticated;
309 if (authenticated) {
355 // Indicate that we're now authenticated.
356 authenticated = true;
377 if (authenticated) {
404 // Indicate that we're now authenticated.
405 authenticated = true;
488 setWasAuthenticated(authenticated);
    [all...]
XMPPConnection.java 81 * Flag that indicates if the user is currently authenticated with the server.
83 private boolean authenticated = false; field in class:XMPPConnection
85 * Flag that indicates if the user was authenticated with the server when the connection
209 if (authenticated) {
250 // Indicate that we're now authenticated.
251 authenticated = true;
289 if (authenticated) {
316 // Indicate that we're now authenticated.
317 authenticated = true;
332 // if connection is authenticated the roster is already set by login()
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardService.java 86 public void keyguardDone(boolean authenticated, boolean wakeup) {
88 mKeyguardViewMediator.keyguardDone(authenticated, wakeup);
  /external/ppp/pppd/plugins/
winbind.c 60 #define AUTHENTICATED 1
269 int authenticated = NOT_AUTHENTICATED; /* not auth */ local
410 } else if (strcasecmp(message, "Authenticated") == 0) {
412 authenticated = AUTHENTICATED;
415 authenticated = NOT_AUTHENTICATED;
427 authenticated = NOT_AUTHENTICATED;
431 authenticated = NOT_AUTHENTICATED;
454 if ((authenticated == AUTHENTICATED) && nt_key && !got_user_session_key)
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServer.java 220 boolean authenticated = false, contentLength = false, chunked = false;
236 authenticated = true;
270 authenticateTest(authenticated);
336 private void authenticateTest(boolean authenticated) {
346 if (!authenticated) {
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardServiceWrapper.java 95 public void keyguardDone(boolean authenticated, boolean wakeup) {
97 mService.keyguardDone(authenticated, wakeup);
  /external/chromium_org/device/bluetooth/
bluetooth_task_manager_win.h 55 bool authenticated; member in struct:device::BluetoothTaskManagerWin::DeviceState

Completed in 675 milliseconds

1 2 3 4