/external/python/cpython3/Lib/test/ |
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/python/cpython3/Doc/library/ |
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
|
allos.rst | 23 getpass.rst
|
/external/autotest/site_utils/ |
set_tree_status.py | 12 import getpass 27 password_file = os.path.join('/home', getpass.getuser(), 31 return getpass.getpass() 43 'username': getpass.getuser(),
|
/external/python/cpython2/Doc/library/ |
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
|
allos.rst | 25 getpass.rst
|
crypt.rst | 48 import crypt, getpass, pwd 57 cleartext = getpass.getpass()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
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
|
/device/linaro/bootloader/edk2/StdLib/PosixLib/GetPass/ |
GetPass.c | 2 Implement the getpass function.
21 char *getpass(const char *Prompt)
function
|
/device/linaro/bootloader/edk2/StdLib/PosixLib/ |
PosixLib.inf | 43 GetPass/GetPass.c
|
/external/python/cpython2/Lib/ |
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/gdb/darwin-x86/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/gdb/linux-x86/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/ |
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
|
/external/python/cpython3/Lib/ |
getpass.py | 3 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
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
test_register.py | 6 import getpass
72 self._old_getpass = getpass.getpass
75 getpass.getpass = _getpass
80 getpass.getpass = self._old_getpass
102 # patching raw_input and getpass.getpass
|
/external/python/cpython2/Lib/distutils/tests/ |
test_register.py | 5 import getpass 74 self._old_getpass = getpass.getpass 77 getpass.getpass = _getpass 82 getpass.getpass = self._old_getpass 104 # patching raw_input and getpass.getpass
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_register.py | 5 import getpass 74 self._old_getpass = getpass.getpass 77 getpass.getpass = _getpass 82 getpass.getpass = self._old_getpass 104 # patching raw_input and getpass.getpass
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_register.py | 5 import getpass 74 self._old_getpass = getpass.getpass 77 getpass.getpass = _getpass 82 getpass.getpass = self._old_getpass 104 # patching raw_input and getpass.getpass
|
/external/compiler-rt/test/sanitizer_common/TestCases/Posix/ |
getpass.cc | 29 char *s = getpass("prompt");
|
/external/autotest/frontend/afe/ |
rpc_client_lib.py | 8 import getpass, os 55 username = getpass.getuser()
|
/external/toolchain-utils/automation/common/ |
job_group.py | 4 import getpass 25 HOMEDIR_PREFIX = os.path.join('/home', getpass.getuser(), 'www', 'automation')
|
/external/python/cpython3/Lib/distutils/tests/ |
test_register.py | 4 import getpass 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/ |
host.py | 21 from getpass import getpass 91 password = getpass('sudo password:')
|