HomeSort by relevance Sort by last modified time
    Searched full:passwd (Results 301 - 325 of 744) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pwd.py 39 if len(entries) > 1000: # Huge passwd file (NIS?) -- skip the rest
test_urllib2_localnet.py 237 PASSWD = "test123"
243 self.digest_auth_handler.set_users({self.USER: self.PASSWD})
262 self.USER, self.PASSWD+"bad")
276 self.USER, self.PASSWD)
285 self.USER, self.PASSWD)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
grp.so 
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pwd.py 39 if len(entries) > 1000: # Huge passwd file (NIS?) -- skip the rest
test_urllib2_localnet.py 237 PASSWD = "test123"
243 self.digest_auth_handler.set_users({self.USER: self.PASSWD})
262 self.USER, self.PASSWD+"bad")
276 self.USER, self.PASSWD)
285 self.USER, self.PASSWD)
  /external/chromium-trace/catapult/telemetry/telemetry/core/
cros_interface_unittest.py 42 self.assertTrue(cri.FileExistsOnDevice('/etc/passwd'))
49 self.assertTrue(cri.FileExistsOnDevice('/etc/passwd'))
  /platform_testing/tests/androidbvt/src/com/android/androidbvt/
ConnectivityWifiTests.java 42 private final String PASSWD = "androidwifi";
121 config.preSharedKey = PASSWD;
  /libcore/ojluni/src/main/java/java/io/
Console.java 81 * char[] passwd;
83 * (passwd = cons.readPassword("[%s]", "Password:")) != null) {
85 * java.util.Arrays.fill(passwd, ' ');
307 char[] passwd = null; local
319 passwd = readline(true);
337 return passwd;
  /external/curl/docs/
MANUAL 64 curl -u "domain\username:passwd" smb://server.example.com/share/file.txt
86 To ftp files using name+passwd, include them in the URL like:
88 curl ftp://name:passwd@machine.domain:port/full/path/to/file
92 curl -u name:passwd ftp://machine.domain:port/full/path/to/file
118 curl http://name:passwd@machine.domain/full/path/to/file
122 curl -u name:passwd http://machine.domain/full/path/to/file
154 curl -u user:passwd -x my-proxy:888 http://www.get.this/
158 curl -U user:passwd -x my-proxy:888 http://www.get.this/
218 curl -T uploadfile -u user:passwd ftp://ftp.upload.com/myfile
223 curl -T uploadfile -u user:passwd ftp://ftp.upload.com
    [all...]
  /external/libvncserver/libvncserver/
main.c 701 /* response is cl->authChallenge vncEncrypted with passwd */
705 char *passwd=rfbDecryptPasswdFromFile(cl->screen->authPasswdData); local
707 if(!passwd) {
712 rfbEncryptBytes(cl->authChallenge, passwd);
715 for (i = strlen(passwd); i >= 0; i--) {
716 passwd[i] = '\0';
719 free(passwd);
  /libcore/ojluni/src/main/java/sun/security/ssl/
SSLContextImpl.java 589 char[] passwd = null; local
591 passwd = defaultKeyStorePassword.toCharArray();
610 ks.load(fs, passwd);
628 kmf.init(ks, null); // do not pass key passwd if using token
630 kmf.init(ks, passwd);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_urllib2_localnet.py 237 PASSWD = "test123"
243 self.digest_auth_handler.set_users({self.USER: self.PASSWD})
262 self.USER, self.PASSWD+"bad")
276 self.USER, self.PASSWD)
285 self.USER, self.PASSWD)
test_urllib2net.py 123 ('file:///nonsensename/etc/passwd', None, urllib2.URLError),
144 ## 'file://%s/etc/passwd' % localhost,
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_urllib2_localnet.py 237 PASSWD = "test123"
243 self.digest_auth_handler.set_users({self.USER: self.PASSWD})
262 self.USER, self.PASSWD+"bad")
276 self.USER, self.PASSWD)
285 self.USER, self.PASSWD)
test_urllib2net.py 123 ('file:///nonsensename/etc/passwd', None, urllib2.URLError),
144 ## 'file://%s/etc/passwd' % localhost,
  /external/libxml2/
nanoftp.c 128 char *passwd; /* passwd string */ member in struct:xmlNanoFTPCtxt
150 static char *proxyPasswd = NULL;/* passwd for proxy authentication */
258 * @passwd: the proxy password
268 const char *passwd, int type) {
285 if (passwd)
286 proxyPasswd = xmlMemStrdup(passwd);
347 ctxt->passwd = xmlMemStrdup(cptr+1);
797 if (ctxt->passwd == NULL)
800 snprintf(buf, sizeof(buf), "PASS %s\r\n", ctxt->passwd);
    [all...]
  /system/core/crash_reporter/
crash_collector.cc 23 #include <pwd.h> // For struct passwd.
172 struct passwd passwd_storage;
173 struct passwd *passwd_result = nullptr;
  /system/vold/
CryptCommandListener.cpp 188 if (!check_argc(cli, subcommand, argc, 3, "<passwd>")) return 0;
204 "default|password|pin|pattern [passwd] [noui]";
283 if (!check_argc(cli, subcommand, argc, 3, "<passwd>")) return 0;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winldap.h 337 WINLDAPAPI ULONG LDAPAPI ldap_simple_bindW(LDAP *ld,PWCHAR dn,PWCHAR passwd);
338 WINLDAPAPI ULONG LDAPAPI ldap_simple_bindA(LDAP *ld,PCHAR dn,PCHAR passwd);
339 WINLDAPAPI ULONG LDAPAPI ldap_simple_bind_sW(LDAP *ld,PWCHAR dn,PWCHAR passwd);
340 WINLDAPAPI ULONG LDAPAPI ldap_simple_bind_sA(LDAP *ld,PCHAR dn,PCHAR passwd);
361 WINLDAPAPI ULONG LDAPAPI ldap_simple_bind(LDAP *ld,const PCHAR dn,const PCHAR passwd);
362 WINLDAPAPI ULONG LDAPAPI ldap_simple_bind_s(LDAP *ld,const PCHAR dn,const PCHAR passwd);
    [all...]
  /external/curl/lib/
url.c 322 char *passwd = NULL; local
329 (passwdp ? &passwd : NULL),
350 *passwdp = passwd;
5352 char *passwd = NULL; local
    [all...]
  /external/dbus/bus/
activation-helper.c 171 struct passwd *pw;
295 struct passwd *pw;
  /external/dbus/tools/
dbus-launch-x11.c 76 struct passwd *user = getpwuid (getuid());
239 struct passwd *user;
  /external/jetty/src/java/org/eclipse/jetty/util/security/
Credential.java 104 String passwd = credentials.toString(); local
105 return _cooked.equals(UnixCrypt.crypt(passwd, _cooked));
  /external/toybox/toys/pending/
crontab.c 263 static void do_edit(struct passwd *pwd)
335 struct passwd *pwd = NULL;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
nis_object.x 178 string en_type<>; /* Type of entry such as "passwd" */
237 string ta_type<64>; /* Table type such as "passwd" */

Completed in 2597 milliseconds

<<11121314151617181920>>