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

1 2 3 4

  /external/lldb/test/pexpect-2.4/examples/
passmass.py 7 import sys, getpass namespace
68 password = getpass.getpass('Current Password: ')
69 newpassword = getpass.getpass('New Password: ')
70 newpasswordconfirm = getpass.getpass('Confirm New Password: ')
astat.py 16 import os, sys, time, re, getopt, getpass namespace
54 password = getpass.getpass('password: ')
sshls.py 10 import getpass, os namespace
44 password = getpass.getpass('Password: ')
ssh_session.py 9 import getpass namespace
57 self.password = getpass.getpass('Remote password: ')
ssh_tunnel.py 17 import getpass namespace
24 X = getpass.getpass('Password: ')
monitor.py 26 import os, sys, time, re, getopt, getpass namespace
74 password = getpass.getpass('password: ')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
getpass.py 3 getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
6 GetPassWarning - This UserWarning is issued when getpass() cannot prevent
20 __all__ = ["getpass","getuser","GetPassWarning"]
160 # Bind the name getpass to the appropriate function
173 getpass = fallback_getpass variable
175 getpass = AskPassword variable
177 getpass = win_getpass variable
179 getpass = unix_getpass variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
getpass.py 3 getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
6 GetPassWarning - This UserWarning is issued when getpass() cannot prevent
20 __all__ = ["getpass","getuser","GetPassWarning"]
160 # Bind the name getpass to the appropriate function
173 getpass = fallback_getpass variable
175 getpass = AskPassword variable
177 getpass = win_getpass variable
179 getpass = unix_getpass variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_register.py 5 import getpass namespace
74 self._old_getpass = getpass.getpass
77 getpass.getpass = _getpass
82 getpass.getpass = self._old_getpass
104 # patching raw_input and getpass.getpass
test_clean.py 5 import getpass namespace
test_install_headers.py 5 import getpass namespace
test_install_data.py 5 import getpass namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_register.py 5 import getpass namespace
74 self._old_getpass = getpass.getpass
77 getpass.getpass = _getpass
82 getpass.getpass = self._old_getpass
104 # patching raw_input and getpass.getpass
test_clean.py 5 import getpass namespace
test_install_headers.py 5 import getpass namespace
  /external/chromium_org/chrome/common/extensions/docs/server2/
update_server.py 6 import getpass namespace
42 password = getpass.getpass()
  /external/chromium_org/third_party/tlslite/tlslite/utils/
openssl_rsakey.py 15 from getpass import getpass namespace
18 p1=getpass(prompt1)
20 p2=getpass(prompt2)
  /external/chromium_org/build/android/pylib/base/
test_dispatcher_unittest.py 97 self.assertEqual(len(results.GetPass()), 2)
102 self.assertEqual(len(results.GetPass()), 0)
107 self.assertEqual(len(results.GetPass()), 2)
149 self.assertEqual(len(results.GetPass()), len(self.tests))
180 self.assertEqual(len(results.GetPass()), 3)
185 self.assertEqual(len(results.GetPass()), 0)
206 self.assertEqual(len(results.GetPass()), 6)
211 self.assertEqual(len(results.GetPass()), 0)
base_test_result.py 99 s.append('[ PASSED ] %s.' % (tests(len(self.GetPass()))))
170 def GetPass(self):
196 return self.GetAll() - self.GetPass()
base_test_result_unittest.py 34 self.assertFalse(self.tr.GetPass().symmetric_difference(
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
register.py 11 import getpass namespace
160 password = getpass.getpass('Password: ')
199 data['password'] = getpass.getpass('Password: ')
201 data['confirm'] = getpass.getpass(' Confirm: ')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
register.py 11 import getpass namespace
160 password = getpass.getpass('Password: ')
199 data['password'] = getpass.getpass('Password: ')
201 data['confirm'] = getpass.getpass(' Confirm: ')
  /art/compiler/dex/
pass_driver.h 64 DCHECK(GetPass(new_pass->GetName()) == nullptr)
79 const Pass* cur_pass = GetPass(pass_name);
102 const Pass* GetPass(const char* name) const {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
user.py 29 import getpass namespace
74 return cls.prompt(message, repeat=repeat, raw_input=getpass.getpass)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sundry.py 53 import getpass namespace

Completed in 301 milliseconds

1 2 3 4