HomeSort by relevance Sort by last modified time
    Searched refs:getpass (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /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(),
abort_suite.py 27 import getpass
68 job__name__icontains=substring, job__owner=getpass.getuser(),
  /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/autotest/frontend/afe/
rpc_client_lib.py 8 import getpass, os
55 username = getpass.getuser()
  /external/compiler-rt/test/sanitizer_common/TestCases/Posix/
getpass.cc 29 char *s = getpass("prompt");
  /external/autotest/site_utils/lxc/
unittest_setup.py 6 import getpass
40 if getpass.getuser() == 'root':
  /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
  /external/skia/tools/lua/
trigger_ct_lua 9 import getpass
75 password = getpass.getpass(
  /external/skqp/tools/lua/
trigger_ct_lua 9 import getpass
75 password = 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
  /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/toolchain-utils/automation/common/
job_group.py 4 import getpass
25 HOMEDIR_PREFIX = os.path.join('/home', getpass.getuser(), 'www', 'automation')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
register.py 11 import getpass
161 password = getpass.getpass('Password: ')
200 data['password'] = getpass.getpass('Password: ')
202 data['confirm'] = getpass.getpass(' Confirm: ')
  /external/python/cpython2/Lib/distutils/command/
register.py 11 import getpass
160 password = getpass.getpass('Password: ')
199 data['password'] = getpass.getpass('Password: ')
201 data['confirm'] = getpass.getpass(' Confirm: ')
  /external/python/cpython3/Lib/distutils/command/
register.py 8 import getpass
158 password = getpass.getpass('Password: ')
197 data['password'] = getpass.getpass('Password: ')
199 data['confirm'] = getpass.getpass(' Confirm: ')
  /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/toolchain-utils/
tc_enter_chroot.py 14 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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
register.py 11 import getpass
160 password = getpass.getpass('Password: ')
199 data['password'] = getpass.getpass('Password: ')
201 data['confirm'] = getpass.getpass(' Confirm: ')
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
register.py 11 import getpass
160 password = getpass.getpass('Password: ')
199 data['password'] = getpass.getpass('Password: ')
201 data['confirm'] = getpass.getpass(' Confirm: ')

Completed in 909 milliseconds

1 2 3 4 5 6