Searched refs:getpass (Results 1 - 25 of 77) sorted by relevance

1234

/external/autotest/site_utils/
H A Dset_tree_status.py12 import getpass namespace
27 password_file = os.path.join('/home', getpass.getuser(),
31 return getpass.getpass()
43 'username': getpass.getuser(),
H A Dabort_suite.py27 import getpass namespace
68 job__name__icontains=substring, job__owner=getpass.getuser(),
H A Ddb_replica_checker.py18 import getpass namespace
110 if getpass.getuser() == SYSTEM_USER and not options.testmode:
/external/autotest/frontend/afe/
H A Drpc_client_lib.py8 import getpass, os namespace
55 username = getpass.getuser()
/external/python/cpython3/Lib/test/
H A Dtest_getpass.py1 import getpass namespace
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
[all...]
/external/compiler-rt/test/sanitizer_common/TestCases/Posix/
H A Dgetpass.cc29 char *s = getpass("prompt");
/external/python/cpython2/Lib/
H A Dgetpass.py3 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
/external/autotest/site_utils/lxc/
H A Dunittest_setup.py6 import getpass namespace
40 if getpass.getuser() == 'root':
/external/toolchain-utils/automation/common/
H A Djob_group.py4 import getpass namespace
25 HOMEDIR_PREFIX = os.path.join('/home', getpass.getuser(), 'www', 'automation')
/external/python/cpython2/Lib/distutils/command/
H A Dregister.py11 import getpass namespace
160 password = getpass.getpass('Password: ')
199 data['password'] = getpass.getpass('Password: ')
201 data['confirm'] = getpass.getpass(' Confirm: ')
/external/python/cpython2/Lib/distutils/tests/
H A Dtest_register.py5 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
H A Dtest_clean.py5 import getpass namespace
H A Dtest_install_headers.py5 import getpass namespace
/external/python/cpython3/Lib/distutils/command/
H A Dregister.py8 import getpass namespace
158 password = getpass.getpass('Password: ')
197 data['password'] = getpass.getpass('Password: ')
199 data['confirm'] = getpass.getpass(' Confirm: ')
/external/python/cpython3/Lib/distutils/tests/
H A Dtest_register.py4 import getpass namespace
80 self._old_getpass = getpass.getpass
83 getpass.getpass = _getpass
89 getpass.getpass = self._old_getpass
112 # patching input and getpass.getpass
/external/devlib/devlib/
H A Dhost.py21 from getpass import getpass namespace
91 password = getpass('sudo password:')
/external/skia/tools/lua/
H A Dtrigger_ct_lua9 import getpass namespace
75 password = getpass.getpass(
/external/skqp/tools/lua/
H A Dtrigger_ct_lua9 import getpass namespace
75 password = getpass.getpass(
/external/autotest/site_utils/lib/
H A Dinfra.py6 import getpass namespace
137 elif getpass.getuser() == 'chromeos-test':
/external/toolchain-utils/
H A Dtc_enter_chroot.py14 import getpass namespace
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)
/external/owasp/sanitizer/tools/
H A Dgooglecode_upload.py54 import getpass namespace
192 password = getpass.getpass()
/external/python/cpython3/Lib/
H A Dgetpass.py3 getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
6 GetPassWarning - This UserWarning is issued when getpass() cannot prevent
23 __all__ = ["getpass","getuser","GetPassWarning"]
171 # Bind the name getpass to the appropriate function
181 getpass = fallback_getpass variable
183 getpass = win_getpass variable
185 getpass = unix_getpass variable
/external/python/cpython2/Lib/test/
H A Dtest_sundry.py49 import getpass namespace
/external/toolchain-utils/cwp/interpreter/
H A Dapp_engine_pull.py18 import getpass namespace
44 password = getpass.getpass('Password: ')
/external/autotest/cli/
H A Djob_unittest.py10 import copy, getpass, unittest, sys namespace
110 self.god.stub_function(getpass, 'getuser')
111 getpass.getuser.expect_call().and_return('user0')

Completed in 1240 milliseconds

1234