HomeSort by relevance Sort by last modified time
    Searched refs:password (Results 251 - 275 of 1221) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
candidate.h 51 const std::string& username, const std::string& password,
55 priority_(priority), username_(username), password_(password),
101 const std::string & password() const { return password_; } function in class:cricket::Candidate
102 void set_password(const std::string & password) { password_ = password; }
tcpport.h 54 const std::string& password,
58 username, password, allow_listen);
80 const std::string& password, bool allow_listen);
  /external/chromium_org/url/
url_canon_stdurl.cc 25 // Authority (username, password, host, port)
27 if (parsed.username.is_valid() || parsed.password.is_valid() ||
39 source.password, parsed.password,
42 &new_parsed->password);
61 new_parsed->password.reset();
url_canon_etc.cc 143 // The username and password components reference ranges in the corresponding
151 const url_parse::Component& password,
155 if (username.len <= 0 && password.len <= 0) {
171 // When there is a password, we need the separator. Note that we strip
173 if (password.len > 0) {
176 AppendStringOfType(&password_spec[password.begin], password.len,
314 const url_parse::Component& password,
319 username_source, username, password_source, password,
326 const url_parse::Component& password,
    [all...]
  /external/dropbear/
cli-auth.c 124 /* Eventually there could be proper password-changing
126 * implement it, and password auth is last-resort
129 dropbear_close("Your password has expired.");
244 /* Order to try is pubkey, interactive, password.
283 * password is statically allocated by getpass() */
286 char* password = NULL; local
288 password = getpass(prompt);
291 if (password == NULL || strchr(password, '\3') != NULL) {
294 return password;
    [all...]
  /frameworks/base/core/java/android/net/http/
RequestHandle.java 224 public void setupBasicAuthResponse(boolean isProxy, String username, String password) {
225 String response = computeBasicAuthResponse(username, password);
238 String password,
246 username, password, realm, nonce, QOP, algorithm, opaque);
273 * @return Basic-scheme authentication response: BASE64(username:password).
275 public static String computeBasicAuthResponse(String username, String password) {
277 Assert.assertNotNull(password);
279 // encode username:password to base64
280 return new String(Base64.encodeBase64((username + ':' + password).getBytes()));
297 String password,
    [all...]
  /external/chromium_org/third_party/zlib/contrib/minizip/
miniunz.c 183 printf("Usage : miniunz [-e] [-x] [-v] [-l] [-o] [-p password] file.zip [file_to_extr.] [-d extractdir]\n\n" \
190 " -p extract crypted file using password\n\n");
299 int do_extract_currentfile(uf,popt_extract_without_path,popt_overwrite,password)
303 const char* password;
357 err = unzOpenCurrentFilePassword(uf,password);
463 int do_extract(uf,opt_extract_without_path,opt_overwrite,password)
467 const char* password;
482 password) != UNZ_OK)
499 int do_extract_onefile(uf,filename,opt_extract_without_path,opt_overwrite,password)
504 const char* password;
528 const char *password=NULL; local
    [all...]
  /external/zlib/src/contrib/minizip/
miniunz.c 196 printf("Usage : miniunz [-e] [-x] [-v] [-l] [-o] [-p password] file.zip [file_to_extr.] [-d extractdir]\n\n" \
203 " -p extract crypted file using password\n\n");
312 int do_extract_currentfile(uf,popt_extract_without_path,popt_overwrite,password)
316 const char* password;
370 err = unzOpenCurrentFilePassword(uf,password);
475 int do_extract(uf,opt_extract_without_path,opt_overwrite,password)
479 const char* password;
494 password) != UNZ_OK)
511 int do_extract_onefile(uf,filename,opt_extract_without_path,opt_overwrite,password)
516 const char* password;
540 const char *password=NULL; local
    [all...]
  /external/chromium/net/url_request/
url_request_ftp_job.cc 111 server_auth_->password);
122 SetAuth(cached_auth->username, cached_auth->password);
124 // Prompt for a username/password.
153 server_auth_->password,
205 const string16& password) {
209 server_auth_->password = password;
212 username, password);
  /external/chromium_org/chrome/browser/sync/glue/
password_change_processor.cc 70 "Server did not create the top-level password node. "
98 // to trying to update an existing password node here.
104 "Unable to create or retrieve password node");
111 "Password node lookup failed.");
112 LOG(ERROR) << "Password node lookup failed.";
131 "Password node lookup failed.");
132 LOG(ERROR) << "Password node lookup failed.";
144 // We've been asked to remove a password that we don't know about.
147 LOG(WARNING) << "Trying to delete nonexistent password sync node!";
153 "Password node lookup failed.")
194 const sync_pb::PasswordSpecificsData& password = extra->unencrypted(); local
215 autofill::PasswordForm password; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 33 self.password = ''
47 self.password = config['password']
51 # getting the password from the distribution
53 if not self.password and self.distribution.password:
54 self.password = self.distribution.password
135 self.password)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 33 self.password = ''
47 self.password = config['password']
51 # getting the password from the distribution
53 if not self.password and self.distribution.password:
54 self.password = self.distribution.password
135 self.password)
  /external/chromium/googleurl/src/
url_canon_etc.cc 168 // The username and password components reference ranges in the corresponding
176 const url_parse::Component& password,
180 if (username.len <= 0 && password.len <= 0) {
196 // When there is a password, we need the separator. Note that we strip
198 if (password.len > 0) {
201 AppendStringOfType(&password_spec[password.begin], password.len,
338 const url_parse::Component& password,
343 username_source, username, password_source, password,
350 const url_parse::Component& password,
    [all...]
url_parse.h 114 PASSWORD,
152 // PASSWORD: 5 5
169 // Username. Specified in URLs with an @ sign before the host. See |password|
172 // Password. The length will be -1 if unspecified, 0 if specified but empty.
173 // Not all URLs with a username have a password, as in "http://me@host/".
174 // The password is separated form the username with a colon, as in
176 Component password; member in struct:url_parse::Parsed
273 Component* password,
279 Component* password,
  /external/chromium/net/http/
http_auth_sspi_win.cc 53 const string16& password,
63 identity.Password =
64 reinterpret_cast<unsigned short*>(const_cast<wchar_t*>(password.c_str()));
65 identity.PasswordLength = password.size();
69 // Pass the username/password to get the credentials handle.
88 // Pass the username/password to get the credentials handle.
254 const string16* password,
257 DCHECK((username == NULL) == (password == NULL));
261 int rv = OnFirstRound(username, password);
294 const string16* password) {
    [all...]
http_auth_handler_digest.h 87 const string16* password,
151 const string16& password,
159 const string16& password,
  /external/chromium/chrome/browser/autofill/crypto/
rc4_decryptor.h 21 explicit RC4Decryptor(wchar_t const* password) {
22 PrepareKey(reinterpret_cast<const uint8 *>(password),
23 wcslen(password) * sizeof(wchar_t));
  /external/chromium/chrome/browser/chromeos/login/
auth_attempt_state.cc 17 const std::string& password,
23 password(password),
  /external/chromium/crypto/
symmetric_key_nss.cc 40 const std::string& password,
51 const_cast<char *>(password.data()));
52 password_item.len = password.size();
  /external/chromium_org/chrome/browser/chromeos/login/
fake_login_utils.cc 131 const std::string& password) {
133 expected_password_ = password;
136 SetExpectedCredentials(username, password);
  /external/chromium_org/components/autofill/core/browser/crypto/
rc4_decryptor.h 26 explicit RC4Decryptor(wchar_t const* password) {
27 PrepareKey(reinterpret_cast<const uint8 *>(password),
28 wcslen(password) * sizeof(wchar_t));
  /external/chromium_org/crypto/
symmetric_key_nss.cc 40 const std::string& password,
51 const_cast<char *>(password.data()));
52 password_item.len = password.size();
  /external/chromium_org/third_party/libjingle/source/talk/examples/chat/
chat_main.cc 67 // Parse username and password, if present.
74 pass.password() = argv[2];
93 if (pass.password().empty()) {
95 printf("Password: ");
96 std::cin >> pass.password();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
  /external/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.cpp 117 STDMETHODIMP COpenCallbackImp::CryptoGetTextPassword(BSTR *password)
125 return getTextPassword->CryptoGetTextPassword(password);
129 return Callback->Open_CryptoGetTextPassword(password);

Completed in 910 milliseconds

<<11121314151617181920>>