Home
last modified time | relevance | path

Searched refs:getpass (Results 1 – 25 of 219) sorted by relevance

123456789

/external/python/cpython3/Lib/test/
Dtest_getpass.py1 import getpass
23 self.assertEqual(expected_name, getpass.getuser())
28 getpass.getuser()
44 getpass.getuser())
47 self.assertRaises(ImportError, getpass.getuser)
56 getpass._raw_input('some_prompt', stream, input=input)
63 getpass._raw_input(prompt, input=input)
69 getpass._raw_input(stream=StringIO())
76 getpass._raw_input(prompt="Hasło: ",stream=stream)
82 self.assertRaises(EOFError, getpass._raw_input, input=input)
[all …]
/external/autotest/site_utils/
Dset_tree_status.py12 import getpass
27 password_file = os.path.join('/home', getpass.getuser(),
31 return getpass.getpass()
43 'username': getpass.getuser(),
Dabort_suite.py27 import getpass
68 job__name__icontains=substring, job__owner=getpass.getuser(),
Ddb_replica_checker.py18 import getpass
110 if getpass.getuser() == SYSTEM_USER and not options.testmode:
/external/python/cpython3/Doc/library/
Dgetpass.rst1 :mod:`getpass` --- Portable password input
4 .. module:: getpass
11 **Source code:** :source:`Lib/getpass.py`
15 The :mod:`getpass` module provides two functions:
18 .. function:: getpass(prompt='Password: ', stream=None)
27 If echo free input is unavailable getpass() falls back to printing
32 If you call getpass from within IDLE, the input may be done in the
/external/python/setuptools/setuptools/command/
Dupload.py1 import getpass
15 getpass.getuser()
40 return getpass.getpass()
/external/python/cpython2/Doc/library/
Dgetpass.rst1 :mod:`getpass` --- Portable password input
4 .. module:: getpass
10 The :mod:`getpass` module provides two functions:
13 .. function:: getpass([prompt[, stream]])
21 If echo free input is unavailable getpass() falls back to printing
31 If you call getpass from within IDLE, the input may be done in the
Dcrypt.rst48 import crypt, getpass, pwd
57 cleartext = getpass.getpass()
/external/python/cpython2/Lib/distutils/tests/
Dtest_register.py5 import getpass
74 self._old_getpass = getpass.getpass
77 getpass.getpass = _getpass
82 getpass.getpass = self._old_getpass
/external/python/cpython2/Lib/distutils/command/
Dregister.py11 import getpass
160 password = getpass.getpass('Password: ')
199 data['password'] = getpass.getpass('Password: ')
201 data['confirm'] = getpass.getpass(' Confirm: ')
/external/python/cpython3/Lib/distutils/tests/
Dtest_register.py4 import getpass
80 self._old_getpass = getpass.getpass
83 getpass.getpass = _getpass
89 getpass.getpass = self._old_getpass
/external/python/cpython3/Lib/distutils/command/
Dregister.py8 import getpass
158 password = getpass.getpass('Password: ')
197 data['password'] = getpass.getpass('Password: ')
199 data['confirm'] = getpass.getpass(' Confirm: ')
/external/autotest/client/bin/
Dautologin.py13 import getpass
35 password = getpass.getpass()
/external/toolchain-utils/
Dtc_enter_chroot.py14 import getpass
181 getpass.getuser(), 'ro')
197 getpass.getuser())
207 MountPoint(output, full_mounted_tc_root + '/output', getpass.getuser()))
217 getpass.getuser())
226 command = 'sudo chown ' + getpass.getuser() + ' ' + full_mounted_tc_root
289 getpass.getuser(), options)
Dfile_lock_machine.py13 import getpass
217 lock.owner = getpass.getuser()
236 if lock.owner != getpass.getuser() and not force:
238 (getpass.getuser(), lock.owner))
/external/python/cpython2/Lib/
Dgetpass.py173 getpass = fallback_getpass variable
175 getpass = AskPassword variable
177 getpass = win_getpass variable
179 getpass = unix_getpass variable
/external/skqp/tools/lua/
Dtrigger_ct_lua9 import getpass
75 password = getpass.getpass(
/external/skia/tools/lua/
Dtrigger_ct_lua9 import getpass
75 password = getpass.getpass(
/external/autotest/frontend/afe/
Drpc_client_lib.py8 import getpass, os
55 username = getpass.getuser()
/external/python/cpython3/Lib/
Dgetpass.py181 getpass = fallback_getpass variable
183 getpass = win_getpass variable
185 getpass = unix_getpass variable
/external/owasp/sanitizer/tools/
Dgooglecode_upload.py54 import getpass
192 password = getpass.getpass()
/external/autotest/site_utils/lxc/
Dunittest_setup.py6 import getpass
40 if getpass.getuser() == 'root':
/external/toolchain-utils/cwp/interpreter/
Dapp_engine_pull.py18 import getpass
44 password = getpass.getpass('Password: ')
/external/toolchain-utils/automation/common/
Djob_group.py4 import getpass
25 HOMEDIR_PREFIX = os.path.join('/home', getpass.getuser(), 'www', 'automation')
/external/autotest/site_utils/lib/
Dinfra.py6 import getpass
137 elif getpass.getuser() == 'chromeos-test':

123456789