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

1 2 3 4

  /external/chromium_org/chromeos/login/
user_names.h 14 namespace login { namespace in namespace:chromeos
16 // Username for stub login when not running on ChromeOS.
19 // Username for the login screen. It is only used to identify login screen
41 } // namespace login
user_names.cc 4 #include "chromeos/login/user_names.h"
10 namespace login { namespace in namespace:chromeos
24 if (user_id == chromeos::login::kGuestUserName)
29 } // namespace login
  /external/chromium_org/chrome/browser/chromeos/login/
helper.h 5 // This file contains helper functions used by Chromium OS login.
26 // Returns bounds of the screen to use for login wizard.
34 // Define the constants in |login| namespace to avoid potential
36 namespace login { namespace in namespace:chromeos
42 // Returns true if lock/login should scroll user pods into view itself when
69 } // namespace login
helper.cc 5 #include "chrome/browser/chromeos/login/helper.h"
42 namespace login { namespace in namespace:chromeos
92 } // namespace login
  /libcore/luni/src/main/java/java/security/
AuthProvider.java 22 import javax.security.auth.login.LoginException;
30 public abstract void login(Subject subject, CallbackHandler handler) throws LoginException; method in class:AuthProvider
  /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.
  /external/lldb/test/pexpect-2.4/examples/
passmass.py 4 Note that login shell prompt on remote machine must end in # or $. """
15 def login(host, user, password): function
24 print 'SSH could not login. Here is what SSH said:'
32 # the login process is asking for our terminal type.
76 child = login(host, user, password)
78 print 'Could not login to host:', host
hive.py 149 def login (args, cli_username=None, cli_password=None): function
183 hive[hostname].login(*hive_connect_info[hostname])
208 host_names, hive = login(args, cli_username, cli_password)
418 parser.add_option ('--samepass', action='store_true', default=False, help='Use same password for each login.')
419 parser.add_option ('--sameuser', action='store_true', default=False, help='Use same username for each login.')
  /external/smack/src/org/apache/harmony/javax/security/auth/login/
AccountException.java 18 package org.apache.harmony.javax.security.auth.login;
AccountExpiredException.java 18 package org.apache.harmony.javax.security.auth.login;
AccountLockedException.java 18 package org.apache.harmony.javax.security.auth.login;
AccountNotFoundException.java 18 package org.apache.harmony.javax.security.auth.login;
CredentialException.java 18 package org.apache.harmony.javax.security.auth.login;
CredentialExpiredException.java 18 package org.apache.harmony.javax.security.auth.login;
CredentialNotFoundException.java 18 package org.apache.harmony.javax.security.auth.login;
FailedLoginException.java 18 package org.apache.harmony.javax.security.auth.login;
LoginException.java 18 package org.apache.harmony.javax.security.auth.login;
23 * Base class for exceptions that are thrown when a login error occurs.
Configuration.java 18 package org.apache.harmony.javax.security.auth.login;
37 private static final String LOGIN_CONFIGURATION_PROVIDER = "login.configuration.provider"; //$NON-NLS-1$
  /external/chromium_org/chrome/browser/chromeos/login/screens/
network_screen.h 12 #include "chrome/browser/chromeos/login/screens/network_screen_actor.h"
13 #include "chrome/browser/chromeos/login/screens/wizard_screen.h"
20 namespace login { namespace in namespace:chromeos
22 } // namespace login
62 void SetNetworkStateHelperForTest(login::NetworkStateHelper* helper);
99 scoped_ptr<login::NetworkStateHelper> network_state_helper_;
network_screen_browsertest.cc 6 #include "chrome/browser/chromeos/login/helper.h"
7 #include "chrome/browser/chromeos/login/screens/mock_screen_observer.h"
8 #include "chrome/browser/chromeos/login/screens/network_screen.h"
9 #include "chrome/browser/chromeos/login/screens/wizard_screen.h"
10 #include "chrome/browser/chromeos/login/test/wizard_in_process_browser_test.h"
11 #include "chrome/browser/chromeos/login/wizard_controller.h"
35 namespace login { namespace in namespace:chromeos
44 } // namespace login
73 mock_network_state_helper_ = new login::MockNetworkStateHelper;
105 login::MockNetworkStateHelper* mock_network_state_helper_
    [all...]
  /external/chromium_org/third_party/pexpect/
pxssh.py 2 This adds methods for login, logout, and expecting the shell prompt.
38 connections. This adds methods for login, logout, and expecting the shell
40 login process. For example, if the session is your first login, then pxssh
58 s.login (hostname, username, password)
70 print "pxssh failed on login."
87 s.login (hostname, username, password)
186 def login (self,server,username,password='',terminal_type='ansi',original_prompt=r"[#$]",login_timeout=10,port=None,auto_prompt_reset=True,ssh_key=None): member in class:pxssh
189 'original_prompt' to try to find the prompt right after login. When it
197 then this will not necessarily cause the login to fail. In the case o
    [all...]
  /external/lldb/test/pexpect-2.4/
pxssh.py 2 This adds methods for login, logout, and expecting the shell prompt.
21 connections. This adds methods for login, logout, and expecting the shell
23 login process. For example, if the session is your first login, then pxssh
41 s.login (hostname, username, password)
53 print "pxssh failed on login."
70 s.login (hostname, username, password)
161 def login (self,server,username,password='',terminal_type='ansi',original_prompt=r"[#$]",login_timeout=10,port=None,auto_prompt_reset=True): member in class:pxssh
164 'original_prompt' to try to find the prompt right after login. When it
172 then this will not necessarily cause the login to fail. In the case o
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/auth/spi/
LoginModule.java 24 import org.apache.harmony.javax.security.auth.login.LoginException;
31 boolean login() throws LoginException; method in interface:LoginModule
  /external/chromium_org/chrome/browser/chromeos/login/lock/
webui_screen_locker.h 16 #include "chrome/browser/chromeos/login/lock/screen_locker_delegate.h"
17 #include "chrome/browser/chromeos/login/signin_specifics.h"
18 #include "chrome/browser/chromeos/login/ui/lock_window.h"
19 #include "chrome/browser/chromeos/login/ui/login_display.h"
20 #include "chrome/browser/chromeos/login/ui/webui_login_view.h"
38 namespace login { namespace in namespace:chromeos
81 virtual void Login(const UserContext& user_context,
137 // Login UI implementation instance.
152 scoped_ptr<login::NetworkStateHelper> network_state_helper_;
  /external/chromium_org/chrome/common/
chrome_paths.cc 479 char* login = getlogin(); local
480 if (!login)
482 cur = cur.AppendASCII(login);

Completed in 4304 milliseconds

1 2 3 4