/external/python/cpython3/Lib/test/ |
D | test_getpass.py | 1 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/ |
D | set_tree_status.py | 15 import getpass 31 password_file = os.path.join('/home', getpass.getuser(), 35 return getpass.getpass() 48 'username': getpass.getuser(),
|
/external/python/setuptools/setuptools/command/ |
D | upload.py | 1 import getpass 15 getpass.getuser() 40 return getpass.getpass()
|
/external/python/cpython3/Doc/library/ |
D | getpass.rst | 1 :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/ |
D | getpass.rst | 1 :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
|
D | crypt.rst | 48 import crypt, getpass, pwd 57 cleartext = getpass.getpass()
|
/external/python/cpython2/Lib/distutils/command/ |
D | register.py | 11 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/ |
D | test_register.py | 5 import getpass 74 self._old_getpass = getpass.getpass 77 getpass.getpass = _getpass 82 getpass.getpass = self._old_getpass
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_register.py | 4 import getpass 80 self._old_getpass = getpass.getpass 83 getpass.getpass = _getpass 89 getpass.getpass = self._old_getpass
|
/external/python/cpython3/Lib/distutils/command/ |
D | register.py | 8 import getpass 158 password = getpass.getpass('Password: ') 197 data['password'] = getpass.getpass('Password: ') 199 data['confirm'] = getpass.getpass(' Confirm: ')
|
/external/python/cpython2/Lib/ |
D | getpass.py | 173 getpass = fallback_getpass variable 175 getpass = AskPassword variable 177 getpass = win_getpass variable 179 getpass = unix_getpass variable
|
/external/toolchain-utils/ |
D | tc_enter_chroot.py | 17 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)
|
D | file_lock_machine.py | 17 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/ |
D | autologin.py | 12 import getpass 51 password = getpass.getpass()
|
/external/skqp/tools/lua/ |
D | trigger_ct_lua | 9 import getpass 75 password = getpass.getpass(
|
/external/python/cryptography/ |
D | release.py | 7 import getpass 113 token = getpass.getpass("Input the Jenkins token: ")
|
/external/autotest/frontend/afe/ |
D | rpc_client_lib.py | 8 import getpass, os 55 username = getpass.getuser()
|
/external/python/cpython3/Lib/ |
D | getpass.py | 181 getpass = fallback_getpass variable 183 getpass = win_getpass variable 185 getpass = unix_getpass variable
|
/external/autotest/site_utils/lxc/ |
D | unittest_setup.py | 6 import getpass 40 if getpass.getuser() == 'root':
|
/external/autotest/site_utils/lib/ |
D | infra.py | 6 import getpass 137 elif getpass.getuser() == 'chromeos-test':
|
/external/llvm/test/CodeGen/PowerPC/ |
D | preincprep-invoke.ll | 30 %call7 = invoke i8* @getpass() 51 declare i8* @getpass()
|
/external/llvm-project/llvm/test/CodeGen/PowerPC/ |
D | preincprep-invoke.ll | 30 %call7 = invoke i8* @getpass() 51 declare i8* @getpass()
|
/external/compiler-rt/test/sanitizer_common/TestCases/Posix/ |
D | getpass.cc | 29 char *s = getpass("prompt"); in main()
|
/external/skqp/tools/android/ |
D | upload_to_android.py | 31 import getpass 107 'git config user.email %s@google.com' % getpass.getuser(), shell=True)
|
/external/skia/tools/android/ |
D | upload_to_android.py | 33 import getpass 109 'git config user.email %s@google.com' % getpass.getuser(), shell=True)
|