HomeSort by relevance Sort by last modified time
    Searched defs:login (Results 26 - 50 of 165) sorted by null

12 3 4 5 6 7

  /external/devlib/devlib/utils/
ssh.py 62 conn.login(host, username, ssh_key=keyfile, port=port, login_timeout=timeout)
64 conn.login(host, username, password, port=port, login_timeout=timeout)
87 def login(self, server, username, password='', login_timeout=10, member in class:TelnetPxssh
101 i = self.expect([self.original_prompt, 'Login incorrect'], timeout=login_timeout)
580 self.conn.login(host, self.username, port=port,
637 Login to device, will be overwritten if there is an actual login
793 login_prompt = ['login:', 'AEL login:', 'username:', 'aarch64-gem5 login:'
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_xauth.h 82 vchar_t *login; /* xauth login */ member in struct:xauth_rmconf
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AbstractFakeCommandHandler.java 351 // Login Support (used by USER and PASS commands)
368 sendReply(session, ReplyCodes.USER_ACCOUNT_NOT_VALID, "login.userAccountNotValid", list(username));
375 sendReply(session, ReplyCodes.USER_ACCOUNT_NOT_VALID, "login.homeDirectoryNotValid", list(username, home));
391 protected void login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) { method in class:AbstractFakeCommandHandler
  /external/syslinux/com32/cmenu/
complex.c 99 char login[40]; local
105 if (mi->item == loginstr) { /* User wants to login */
113 getstring(login, sizeof username);
121 if (authenticate_user(login, pwd)) {
122 strcpy(username, login);
382 curr = add_item(loginstr, "Login as a privileged user", OPT_RUN, NULL, 0);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
smtplib.py 539 def login(self, user, password): member in class:SMTP
572 AUTH_LOGIN = "LOGIN"
ftplib.py 9 >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
10 '230 Guest login ok, access restrictions apply.'
112 # and user, passwd, acct (for login())
119 self.login(user, passwd, acct)
373 def login(self, user = '', passwd = '', acct = ''): member in class:FTP
374 '''Login, default anonymous.'''
612 >>> ftps.login() # login anonymously previously securing control channel
613 '230 Guest login ok, access restrictions apply.'
641 def login(self, user='', passwd='', acct='', secure=True) member in class:.FTP_TLS
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
smtplib.py 539 def login(self, user, password): member in class:SMTP
572 AUTH_LOGIN = "LOGIN"
ftplib.py 9 >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
10 '230 Guest login ok, access restrictions apply.'
112 # and user, passwd, acct (for login())
119 self.login(user, passwd, acct)
373 def login(self, user = '', passwd = '', acct = ''): member in class:FTP
374 '''Login, default anonymous.'''
612 >>> ftps.login() # login anonymously previously securing control channel
613 '230 Guest login ok, access restrictions apply.'
641 def login(self, user='', passwd='', acct='', secure=True) member in class:.FTP_TLS
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtplib.py 539 def login(self, user, password): member in class:SMTP
572 AUTH_LOGIN = "LOGIN"
ftplib.py 9 >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
10 '230 Guest login ok, access restrictions apply.'
112 # and user, passwd, acct (for login())
119 self.login(user, passwd, acct)
373 def login(self, user = '', passwd = '', acct = ''): member in class:FTP
374 '''Login, default anonymous.'''
612 >>> ftps.login() # login anonymously previously securing control channel
613 '230 Guest login ok, access restrictions apply.'
641 def login(self, user='', passwd='', acct='', secure=True) member in class:.FTP_TLS
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtplib.py 539 def login(self, user, password): member in class:SMTP
572 AUTH_LOGIN = "LOGIN"
  /cts/tests/autofillservice/src/android/autofillservice/cts/
LoginActivity.java 45 * <li>Login Button
70 // State used to synchronously get the result of a login attempt.
86 mLoginButton = findViewById(R.id.login);
96 mLoginButton.setOnClickListener((v) -> login());
148 * Emulates a login action.
150 private void login() { method in class:LoginActivity
159 Log.d(TAG, "login ok: " + username);
167 Log.d(TAG, "login failed: " + AUTHENTICATION_MESSAGE);
291 * Taps the login button in the UI thread.
297 assertWithMessage("Timeout (%s ms) waiting for login", LOGIN_TIMEOUT_MS
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ftplib.py 9 >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
10 '230 Guest login ok, access restrictions apply.'
112 # and user, passwd, acct (for login())
119 self.login(user, passwd, acct)
363 def login(self, user = '', passwd = '', acct = ''): member in class:FTP
364 '''Login, default anonymous.'''
602 >>> ftps.login() # login anonymously previously securing control channel
603 '230 Guest login ok, access restrictions apply.'
631 def login(self, user='', passwd='', acct='', secure=True): member in class:.FTP_TLS
    [all...]
  /external/python/cpython2/Lib/
ftplib.py 9 >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
10 '230 Guest login ok, access restrictions apply.'
115 # and user, passwd, acct (for login())
122 self.login(user, passwd, acct)
378 def login(self, user = '', passwd = '', acct = ''): member in class:FTP
379 '''Login, default anonymous.'''
626 >>> ftps.login() # login anonymously previously securing control channel
627 '230 Guest login ok, access restrictions apply.'
667 def login(self, user='', passwd='', acct='', secure=True) member in class:FTP.FTP_TLS
    [all...]
smtplib.py 547 def login(self, user, password): member in class:SMTP
580 AUTH_LOGIN = "LOGIN"
  /external/python/cpython3/Lib/
ftplib.py 9 >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
10 '230 Guest login ok, access restrictions apply.'
111 # and user, passwd, acct (for login())
119 self.login(user, passwd, acct)
399 def login(self, user = '', passwd = '', acct = ''): member in class:FTP
400 '''Login, default anonymous.'''
700 >>> ftps.login() # login anonymously previously securing control channel
701 '230 Guest login ok, access restrictions apply.'
745 def login(self, user='', passwd='', acct='', secure=True) member in class:.FTP_TLS
    [all...]
smtplib.py 658 """ Authobject to use with LOGIN authentication. Requires self.user and
665 def login(self, user, password, *, initial_response_ok=True): member in class:SMTP
702 preferred_auths = ['CRAM-MD5', 'PLAIN', 'LOGIN']
728 # We could not login successfully. Return result of last attempt.
    [all...]
  /external/syslinux/bios/com32/cmenu/
test.c 208 char login[40]; local
217 if (mi->item == loginstr) { /* User wants to login */
226 getstring(login, sizeof username);
234 if (authenticate_user(login,pwd))
236 strcpy(username,login);
test2.c 208 char login[40]; local
217 if (mi->item == loginstr) { /* User wants to login */
226 getstring(login, sizeof username);
234 if (authenticate_user(login,pwd))
236 strcpy(username,login);
466 curr = add_item(loginstr,"Login/Logout of authentication system",OPT_RUN,NULL,0);
  /external/syslinux/efi32/com32/cmenu/
test.c 208 char login[40]; local
217 if (mi->item == loginstr) { /* User wants to login */
226 getstring(login, sizeof username);
234 if (authenticate_user(login,pwd))
236 strcpy(username,login);
test2.c 208 char login[40]; local
217 if (mi->item == loginstr) { /* User wants to login */
226 getstring(login, sizeof username);
234 if (authenticate_user(login,pwd))
236 strcpy(username,login);
466 curr = add_item(loginstr,"Login/Logout of authentication system",OPT_RUN,NULL,0);
  /external/syslinux/efi64/com32/cmenu/
test.c 208 char login[40]; local
217 if (mi->item == loginstr) { /* User wants to login */
226 getstring(login, sizeof username);
234 if (authenticate_user(login,pwd))
236 strcpy(username,login);
test2.c 208 char login[40]; local
217 if (mi->item == loginstr) { /* User wants to login */
226 getstring(login, sizeof username);
234 if (authenticate_user(login,pwd))
236 strcpy(username,login);
466 curr = add_item(loginstr,"Login/Logout of authentication system",OPT_RUN,NULL,0);
  /libcore/ojluni/src/main/java/sun/net/ftp/
FtpClient.java 50 * cl.connect("ftp.gnu.org").login("anonymous", "john.doe@mydomain.com".toCharArray())).changeDirectory("pub/gnu");
271 * @throws FtpProtocolException if the login was refused by the server
273 public abstract FtpClient login(String user, char[] password) throws FtpProtocolException, IOException; method in class:FtpClient
284 * @throws FtpProtocolException if the login was refused by the server
286 public abstract FtpClient login(String user, char[] password, String account) throws FtpProtocolException, IOException; method in class:FtpClient
303 * @return {@code true} if the client has already completed a login.
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
FtpURLConnection.java 67 * <LI>Login</LI>
220 * @throws FtpLoginException if the login is unsuccessful
335 ftp.login(user, password == null ? null : password.toCharArray());

Completed in 602 milliseconds

12 3 4 5 6 7