Searched defs:username (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DHttpAuthHandler.java60 public void proceed(String username, String password) { argument
H A DWebViewProvider.java83 public void savePassword(String host, String username, String password); argument
86 String username, String password);
85 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument
H A DWebView.java635 * Sets a username and password pair for the specified host. This data is
636 * used by the Webview to autocomplete username and password fields in web
641 * @param username the username for the given host
648 public void savePassword(String host, String username, String password) { argument
651 mProvider.savePassword(host, username, password);
661 * @param username the username
668 String username, String password) {
671 mProvider.setHttpAuthUsernamePassword(host, realm, username, passwor
667 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java53 public String username = ""; // 3 field in class:VpnProfile
78 username = in.readString();
99 out.writeString(username);
133 profile.username = values[3];
146 profile.saveLogin = !profile.username.isEmpty() || !profile.password.isEmpty();
158 builder.append('\0').append(saveLogin ? username : "");
/frameworks/base/core/java/android/net/http/
H A DHttpAuthHeader.java57 * new username and password.
62 * A string to be displayed to users so they know which username and
139 * @return The username string.
146 * Sets the username string.
148 public void setUsername(String username) { argument
149 mUsername = username;
H A DRequestHandle.java224 public void setupBasicAuthResponse(boolean isProxy, String username, String password) { argument
225 String response = computeBasicAuthResponse(username, password);
237 String username,
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) { argument
276 Assert.assertNotNull(username);
279 // encode username:password to base64
280 return new String(Base64.encodeBase64((username + ':' + password).getBytes()));
296 private String computeDigestAuthResponse(String username, argument
236 setupDigestAuthResponse(boolean isProxy, String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardAccountView.java207 * Given the string the user entered in the 'username' field, find
212 * - if they didn't include a domain, an exact match of the username, or
214 * match of the username.
222 private Account findIntendedAccount(String username) { argument
227 // typed only the username (and not the domain), or got
234 if (username.equals(a.name)) {
236 } else if (username.equalsIgnoreCase(a.name)) {
238 } else if (username.indexOf('@') < 0) {
242 if (username.equals(aUsername)) {
244 } else if (username
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
H A DWebView.java82 public void savePassword(String host, String username, String password) { argument
86 String username, String password) {
85 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipProfile.java135 * @param username username of the SIP account
141 public Builder(String username, String serverDomain) argument
143 if ((username == null) || (serverDomain == null)) {
145 "username and serverDomain cannot be null");
147 mUri = mAddressFactory.createSipURI(username, serverDomain);
158 * Sets the username used for authentication.
160 * @param name authentication username of the profile
390 * Gets the username.
392 * @return the username
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipHelper.java178 private SipURI createSipUri(String username, String transport, argument
180 return createSipUri(username, transport, lp.getIPAddress(), lp.getPort());
183 private SipURI createSipUri(String username, String transport, argument
185 SipURI uri = mAddressFactory.createSipURI(username, ip);
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewContentsClientAdapter.java1010 public void proceed(String username, String password) { argument
1011 if (username == null) {
1012 username = "";
1018 mAwHandler.proceed(username, password);
H A DWebViewChromium.java450 public void savePassword(String host, String username, String password) { argument
456 final String username, final String password) {
461 setHttpAuthUsernamePassword(host, realm, username, password);
466 mAwContents.setHttpAuthUsernamePassword(host, realm, username, password);
455 setHttpAuthUsernamePassword(final String host, final String realm, final String username, final String password) argument
/frameworks/base/core/java/android/text/style/
H A DTtsSpan.java137 * protocol://username:password@domain:port/path?query_string#fragment_id
138 * Hence populating just username and domain will read as an email address.
397 * Argument used to specify the username part of a URI. Should be set as a
401 public static final String ARG_USERNAME = "android.arg.username";
1336 * @param username The part before the @ in the email address.
1340 public ElectronicBuilder setEmailArguments(String username, argument
1342 return setDomain(domain).setUsername(username);
1359 public ElectronicBuilder setUsername(String username) { argument
1360 return setStringArgument(TtsSpan.ARG_USERNAME, username);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java562 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java564 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java648 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1680 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java1577 * the username for APN, or NULL
1736 * @param username
1737 * the username for APN, or NULL
1743 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
H A DRIL.java4331 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
4340 rr.mParcel.writeString(username);
4345 + ", username:" + username + ", password:" + password);

Completed in 873 milliseconds