/third_party/python/Lib/test/ |
H A D | test_getpass.py | 1 import getpass namespace 23 self.assertEqual(expected_name, getpass.getuser()) 28 getpass.getuser() 47 getpass.getuser()) 50 self.assertRaises(ImportError, getpass.getuser) 59 getpass._raw_input('some_prompt', stream, input=input) 66 getpass._raw_input(prompt, input=input) 72 getpass._raw_input(stream=StringIO()) 79 getpass._raw_input(prompt="Hasło: ",stream=stream) 85 self.assertRaises(EOFError, getpass [all...] |
H A D | test_ssl.py | 1433 raise Exception('getpass error') 1437 def getpass(self): member in ContextTests.test_load_cert_chain.GetPassCallable 1444 password=GetPassCallable().getpass) 1451 with self.assertRaisesRegex(Exception, "getpass error"):
|
/third_party/python/Lib/distutils/command/ |
H A D | register.py | 8 import getpass namespace 158 password = getpass.getpass('Password: ') 197 data['password'] = getpass.getpass('Password: ') 199 data['confirm'] = getpass.getpass(' Confirm: ')
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_register.py | 4 import getpass namespace 81 self._old_getpass = getpass.getpass 84 getpass.getpass = _getpass 90 getpass.getpass = self._old_getpass 113 # patching input and getpass.getpass
|
/third_party/python/Lib/ |
H A D | 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
|
H A D | imaplib.py | 1551 import getopt, getpass namespace 1570 USER = getpass.getuser() 1571 PASSWD = getpass.getpass("IMAP password for %s on %s: " % (USER, host or "localhost"))
|
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/ |
H A D | sync_restricted_traces_to_cipd.py | 12 import getpass namespace 49 trace_prefix = EXPERIMENTAL_CIPD_PREFIX % getpass.getuser()
|
H A D | gen_restricted_traces.py | 10 import getpass namespace 351 trace_prefix = EXPERIMENTAL_CIPD_PREFIX % getpass.getuser()
|
/third_party/skia/tools/android/ |
H A D | upload_to_android.py | 33 import getpass namespace 109 'git config user.email %s@google.com' % getpass.getuser(), shell=True)
|
/third_party/musl/src/legacy/ |
H A D | getpass.c | 8 char *getpass(const char *prompt) in getpass() function
|
/third_party/skia/tools/rebaseline/ |
H A D | toggle_legacy_flag.py | 25 import getpass namespace
|
/third_party/musl/porting/liteos_a/user/include/ |
H A D | unistd.h | 193 char *getpass(const char *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | unistd.h | 168 char *getpass(const char *);
|
/third_party/musl/porting/linux/user/include/ |
H A D | unistd.h | 195 char *getpass(const char *);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | unistd.h | 193 char *getpass(const char *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | unistd.h | 168 char *getpass(const char *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | unistd.h | 173 char *getpass(const char *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | unistd.h | 168 char *getpass(const char *);
|
/third_party/musl/include/ |
H A D | unistd.h | 232 char *getpass(const char *);
|
/third_party/googletest/googletest/scripts/ |
H A D | upload.py | 50 import getpass namespace 487 password = getpass.getpass("Password for %s: " % email)
|
/third_party/python/Lib/urllib/ |
H A D | request.py | 2347 import getpass namespace 2350 passwd = getpass.getpass("Enter password for %s in %s at %s: " %
|
/third_party/python/Lib/test/support/ |
H A D | __init__.py | 8 import getpass namespace 391 isbuildbot = getpass.getuser().lower() == 'buildbot' 393 warnings.warn(f'getpass.getuser() failed {err}.', RuntimeWarning)
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfsdecrypt.c | 1569 password = getpass("Enter the password with which the private key was " in main()
|
/third_party/backends/frontend/ |
H A D | scanimage.c | 294 strcpy (password, (wipe = getpass ("Enter password: "))); in auth_callback() 297 printf("OS has no getpass(). User Queries will not work\n"); in auth_callback()
|
/third_party/rust/crates/libc/src/unix/haiku/ |
H A D | mod.rs | 1579 pub fn getpass(prompt: *const ::c_char) -> *mut ::c_char; in getpass() functions
|