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

/frameworks/base/core/java/android/webkit/
H A DHttpAuthHandler.java62 public void proceed(String username, String password) { argument
H A DWebViewProvider.java94 public void savePassword(String host, String username, String password); argument
97 String username, String password);
96 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument
H A DWebView.java724 * Sets a username and password pair for the specified host. This data is
725 * used by the Webview to autocomplete username and password fields in web
730 * @param username the username for the given host
737 public void savePassword(String host, String username, String password) { argument
739 mProvider.savePassword(host, username, password);
748 * with the correct username and password.
750 * The embedder app can get the username and password any way it chooses, and does not have to
766 * @param username the username
772 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/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/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";
1346 * @param username The part before the @ in the email address.
1350 public ElectronicBuilder setEmailArguments(String username, argument
1352 return setDomain(domain).setUsername(username);
1369 public ElectronicBuilder setUsername(String username) { argument
1370 return setStringArgument(TtsSpan.ARG_USERNAME, username);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java566 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.java567 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java1608 * the username for APN, or NULL
1767 * @param username
1768 * the username for APN, or NULL
1774 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
H A DRIL.java4883 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
4892 rr.mParcel.writeString(username);
4897 + ", username:" + username + ", password:" + password);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1840 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument
H A DSimulatedCommandsVerifier.java1224 public void setInitialAttachApn(String apn, String protocol, int authType, String username, argument

Completed in 278 milliseconds