HomeSort by relevance Sort by last modified time
    Searched refs:password (Results 226 - 250 of 303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
X509KeyManagerTest.java 37 private String password = "1234"; field in class:X509KeyManagerTest
    [all...]
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginView.mm 996 CString& username, CString& password)
1034 password = [[credential password] UTF8String];
WebNetscapePluginView.mm     [all...]
  /build/tools/signapk/
SignApk.java 95 * Reads the password from stdin and returns it as a string.
101 System.out.print("Enter password for " + keyFile + " (password will not be hidden): ");
130 char[] password = readPassword(keyFile).toCharArray(); local
133 Key key = skFactory.generateSecret(new PBEKeySpec(password));
141 System.err.println("signapk: Password for " + keyFile + " may be bad.");
  /external/webkit/WebCore/xml/
XMLHttpRequest.cpp 353 void XMLHttpRequest::open(const String& method, const KURL& url, bool async, const String& user, const String& password, ExceptionCode& ec)
357 urlWithCredentials.setPass(password);
  /external/webkit/WebKit/wx/
WebView.cpp 960 const wxString& password)
964 mgr->setProxyInfo(host, port, curlProxyType(type), username, password);
WebView.h 203 const wxString& password = wxEmptyString);
  /external/wpa_supplicant/
eap_pax.c 61 (!config->eappsk && !config->password)) {
63 "(eappsk/password) not configured");
92 addr[0] = config->password;
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_gpsk.c 413 if (sm->user == NULL || sm->user->password == NULL) {
414 wpa_printf(MSG_INFO, "EAP-GPSK: No PSK/password configured "
420 if (eap_gpsk_derive_keys(sm->user->password, sm->user->password_len,
  /external/qemu/
console.h 329 int vnc_display_password(DisplayState *ds, const char *password);
  /external/skia/src/images/
fpdfemb.h 81 #define FPDFERR_PASSWORD 3 // Incorrect password
435 // password - Pointer to a zero-terminated byte string, for the password.
436 // Or NULL for no password.
445 // FPDFERR_PASSWORD: incorrect password.
461 FPDFEMB_RESULT FPDFEMB_StartLoadDocument(FPDFEMB_FILE_ACCESS* file, const char* password,
475 // FPDFERR_PASSWORD: incorrect password.
    [all...]
  /external/webkit/WebCore/plugins/
npfunctions.h 71 typedef NPError (*NPN_GetAuthenticationInfoProcPtr)(NPP npp, const char* protocol, const char* host, int32 port, const char* scheme, const char *realm, char** username, uint32* ulen, char** password, uint32* plen);
  /external/webkit/WebCore/platform/
KURLGoogle.cpp 509 // Returns the empty string if there is no password.
513 // a null string when the password is empty, which we duplicate here.
514 if (!m_url.m_parsed.password.is_nonempty())
518 return m_url.componentString(m_url.m_parsed.password);
654 // This function is commonly called to clear the password, which we
656 if (pass.isEmpty() && !m_url.m_parsed.password.is_valid())
    [all...]
  /external/webkit/WebCore/platform/network/curl/
ResourceHandleManager.cpp 421 const String& password)
429 if (username.length() || password.length())
430 userPass = username + ":" + password + "@";
780 // curl CURLOPT_USERPWD expects username:password
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmMmiCode.java 83 // Supp Service Password registration
112 String pwd; // For password registration
615 // sia = password
618 String password = sia; local
623 phone.mCM.queryFacilityLock(facility, password,
626 phone.mCM.setFacilityLock(facility, isActivate(), password,
654 // password mismatch; return error
683 // password mismatch; return error
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java 728 String password = "password"; local
733 mWebView.setHttpAuthUsernamePassword(host, realm, userName, password);
737 assertEquals(password, result[1]);
754 mWebView.setHttpAuthUsernamePassword(host, realm, null, password);
758 assertEquals(password, result[1]);
794 String password = "password"; local
796 mWebView.savePassword(host, userName, password);
    [all...]
  /external/grub/stage2/
builtins.c 70 /* The password. */
71 char *password; variable
72 /* The password type. */
102 password = 0;
108 /* Check a password for correctness. Returns 0 if password was
123 /* unsupported password type: be secure */
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
DeviceAdminSample.java 111 // Password quality spinner choices
184 mPassword = (EditText)findViewById(R.id.password);
333 // Launch the activity to have the user set a new password.
344 builder.setMessage("You can't reset my password because you are a monkey!");
  /external/webkit/WebCore/bridge/
npapi.h 886 NPError NPN_GetAuthenticationInfo(NPP instance, const char* protocol, const char* host, int32 port, const char* scheme, const char *realm, char** username, uint32* ulen, char** password, uint32* plen);
  /packages/apps/Browser/src/com/android/browser/
Tab.java 769 String password = null;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
RIL.java 1268 password, Integer.toString(authType), result); local
    [all...]
  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountManagerTest.java 53 public static final String ACCOUNT_PASSWORD = "android.accounts.cts.account.password";
205 private void addAccountExplicitly(Account account, String password, Bundle userdata) {
206 assertTrue(am.addAccountExplicitly(account, password, userdata));
420 // Check that the password is the one we defined
423 // Clear the password and check that it is cleared
427 // Reset the password
430 // Check that the password is the one we defined
    [all...]
  /external/quake/quake/src/QW/client/
cl_main.c 70 cvar_t password = CVAR4("password", "", false, true); variable
1119 Cvar_RegisterVariable (&password);
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm     [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
bugzilla.py 474 (username, password) = Credentials(
482 self.browser['Bugzilla_password'] = password

Completed in 1137 milliseconds

1 2 3 4 5 6 7 8 91011>>