Home
last modified time | relevance | path

Searched refs:getpass (Results 1 – 25 of 217) 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.py15 import getpass
31 password_file = os.path.join('/home', getpass.getuser(),
35 return getpass.getpass()
48 'username': getpass.getuser(),
/external/python/setuptools/setuptools/command/
Dupload.py1 import getpass
15 getpass.getuser()
40 return getpass.getpass()
/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/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/command/
Dregister.py11 import getpass
160 password = getpass.getpass('Password: ')
199 data['password'] = getpass.getpass('Password: ')
201 data['confirm'] = getpass.getpass(' Confirm: ')
/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/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/python/cpython2/Lib/
Dgetpass.py173 getpass = fallback_getpass variable
175 getpass = AskPassword variable
177 getpass = win_getpass variable
179 getpass = unix_getpass variable
/external/toolchain-utils/
Dtc_enter_chroot.py17 import getpass
184 getpass.getuser(), 'ro')
200 getpass.getuser())
210 MountPoint(output, full_mounted_tc_root + '/output', getpass.getuser()))
220 getpass.getuser())
229 command = 'sudo chown ' + getpass.getuser() + ' ' + full_mounted_tc_root
291 getpass.getuser(), options)
Dfile_lock_machine.py17 import getpass
231 lock.owner = getpass.getuser()
250 if lock.owner != getpass.getuser() and not force:
252 (getpass.getuser(), lock.owner))
/external/autotest/client/bin/
Dautologin.py12 import getpass
51 password = getpass.getpass()
/external/skqp/tools/lua/
Dtrigger_ct_lua9 import getpass
75 password = getpass.getpass(
/external/python/cryptography/
Drelease.py7 import getpass
113 token = getpass.getpass("Input the Jenkins token: ")
/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/autotest/site_utils/lxc/
Dunittest_setup.py6 import getpass
40 if getpass.getuser() == 'root':
/external/autotest/site_utils/lib/
Dinfra.py6 import getpass
137 elif getpass.getuser() == 'chromeos-test':
/external/llvm/test/CodeGen/PowerPC/
Dpreincprep-invoke.ll30 %call7 = invoke i8* @getpass()
51 declare i8* @getpass()
/external/llvm-project/llvm/test/CodeGen/PowerPC/
Dpreincprep-invoke.ll30 %call7 = invoke i8* @getpass()
51 declare i8* @getpass()
/external/compiler-rt/test/sanitizer_common/TestCases/Posix/
Dgetpass.cc29 char *s = getpass("prompt"); in main()
/external/skqp/tools/android/
Dupload_to_android.py31 import getpass
107 'git config user.email %s@google.com' % getpass.getuser(), shell=True)
/external/skia/tools/android/
Dupload_to_android.py33 import getpass
109 'git config user.email %s@google.com' % getpass.getuser(), shell=True)

123456789