HomeSort by relevance Sort by last modified time
    Searched refs:password (Results 476 - 500 of 792) sorted by null

<<11121314151617181920>>

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccCardProxy.java 606 public void setIccLockEnabled(boolean enabled, String password, Message onComplete) {
609 mUiccApplication.setIccLockEnabled(enabled, password, onComplete);
620 public void setIccFdnEnabled(boolean enabled, String password, Message onComplete) {
623 mUiccApplication.setIccFdnEnabled(enabled, password, onComplete);
UiccCardApplication.java 602 * @param password needed to change the ICC pin state, aka. Pin1
609 String password, Message onComplete) {
619 enabled, password, serviceClassX, mAid,
629 * @param password needed to change the ICC fdn enable, aka Pin2
636 String password, Message onComplete) {
647 enabled, password, serviceClassX, mAid,
653 * Change the ICC password used in ICC pin lock
656 * @param oldPassword is the old password
657 * @param newPassword is the new password
673 * Change the ICC password used in ICC fdn enabl
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmDataConnection.java 106 mApn.apn, mApn.user, mApn.password,
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
rsn.h 113 char password[RSN_MAX_PASSWD_LEN]; /**< User password string */ member in struct:__anon20924
114 TI_UINT8 pwdLength; /**< User password string length */
  /packages/apps/Email/src/com/android/email/mail/
Store.java 167 * Handle discovery of account settings using only the user's email address and password
170 * @param password the password of the exchange user
174 public Bundle autoDiscover(Context context, String emailAddress, String password)
  /packages/apps/Settings/src/com/android/settings/
ApnEditor.java 106 Telephony.Carriers.PASSWORD, // 7
482 values.put(Telephony.Carriers.PASSWORD, checkNotSet(mPassword.getText()));
575 char[] password = new char[value.length()]; local
576 for (int i = 0; i < password.length; i++) {
577 password[i] = '*';
579 return new String(password);
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigUiForSetupWizardXL.java 77 requestFocusAndShowKeyboard(R.id.password);
88 // Set Focus to password View.
91 Log.w(TAG, "password field to be focused not found.");
93 Log.w(TAG, "password field is not EditText");
  /external/wpa_supplicant_6/wpa_supplicant/
config.c 1055 wpa_printf(MSG_DEBUG, "Unset configuration string 'password'");
1056 os_free(ssid->eap.password);
1057 ssid->eap.password = NULL;
1069 "password.", line);
1075 os_free(ssid->eap.password);
1076 ssid->eap.password = (u8 *) tmp;
1086 wpa_printf(MSG_ERROR, "Line %d: Invalid password hash length "
1097 wpa_printf(MSG_ERROR, "Line %d: Invalid password hash", line);
1103 os_free(ssid->eap.password);
1104 ssid->eap.password = hash
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
interworking.c 515 /* Only tunneled methods with username/password supported */
568 ((cred->password == NULL ||
569 cred->password[0] == '\0') &&
576 if (cred->password && cred->password[0] &&
842 if (wpa_config_set_quoted(ssid, "password",
854 if (cred->password && cred->password[0] &&
855 wpa_config_set_quoted(ssid, "password", cred->password) < 0
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 59 and password will be included in the request. If successful, we'll return
68 self.password = self.request.get('password')
74 (self.password == BaseWebServiceHandler.ACCT_PASSWORD)):
88 The request should include username/password parameters that correspond
114 request to include username and password fields. It returns authtoken
  /development/scripts/
stack 58 password = getpass.getpass()
59 params = urllib.urlencode({"u": user, "pw": password})
  /external/chromium/chrome/browser/chromeos/login/
views_login_display.cc 253 const string16& password) {
254 delegate()->Login(source->user().email(), UTF16ToUTF8(password));
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
picasa_client.js 159 * @param {string} password User password.
164 login: function(login, password, callback, opt_captcha) {
187 '&Passwd=' + password + '&service=lh2&source=ChromeOsPWAUploader';
  /external/chromium/chrome/browser/sync/syncable/
model_type.cc 31 specifics->MutableExtension(sync_pb::password);
154 if (specifics.HasExtension(sync_pb::password))
408 const char kPasswordNotificationType[] = "PASSWORD";
  /external/chromium/chrome/browser/ui/login/
login_prompt_uitest.cc 48 const wstring& password) {
49 // The TestServer sets the title to username/password on successful login.
50 return username + L"/" + password;
73 EXPECT_EQ(L"Denied: wrong password", GetActiveTabTitle());
103 EXPECT_EQ(L"Denied: wrong password", GetActiveTabTitle());
  /external/chromium/chrome/browser/ui/views/
accessibility_event_router_views.cc 269 bool password = textfield->IsPassword(); local
270 AccessibilityTextBoxInfo info(profile, name, password);
  /external/chromium/net/http/
http_auth_handler_digest_unittest.cc 376 const char* password; member in struct:net::__anon4481
381 { // MD5 with username/password
390 "foo", "bar", // username/password
402 { // MD5 with username but empty password. username has space in it.
411 "foo bar", "", // Username/password
432 "", "pass", // Username/password
444 { // MD5 with no username and no password.
453 "", "", // Username/password
472 "FooBar", "pass", // Username/password
490 "USER", "123", // Username/password
    [all...]
  /external/chromium/net/socket_stream/
socket_stream_unittest.cc 121 << " password=" << password_;
125 const string16& password) {
127 password_ = password;
  /external/chromium/net/test/
test_server.cc 219 const std::string& password) const {
220 return GURL(GetScheme() + "://" + user + ":" + password +
  /external/chromium/net/tools/testserver/
testserver.py 854 username = userpass = password = b64str = ""
863 if 'password' in query_params:
864 expected_password = query_params['password'][0]
874 username, password = re.findall(r'([^:]+):(\S+)', userpass)[0]
875 if password != expected_password:
876 raise Exception('wrong password')
892 self.wfile.write('password: %s<p>' % password)
928 self.wfile.write('<title>%s/%s</title>' % (username, password))
965 password = 'secret
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
ant-starteam.jar 
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/auth/
AuthenticationManager.java 180 public boolean authenticatePublicKey(String user, char[] PEMPrivateKey, String password, SecureRandom rnd)
190 Object key = PEMDecoder.decode(PEMPrivateKey, password);
305 if (methodPossible("password") == false)
306 throw new IOException("Authentication method password not supported by the server at this stage.");
336 throw (IOException) new IOException("Password authentication failed.").initCause(e);
  /external/openssl/apps/
openssl.cnf 157 challengePassword = A challenge password
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLInputElement12.js 79 type has a value of text or password only.

Completed in 689 milliseconds

<<11121314151617181920>>