HomeSort by relevance Sort by last modified time
    Searched refs:PasswordAuthentication (Results 1 - 25 of 42) sorted by null

1 2

  /libcore/ojluni/src/main/java/java/net/
PasswordAuthentication.java 30 * The class PasswordAuthentication is a data holder that is used by
40 public final class PasswordAuthentication {
46 * Creates a new {@code PasswordAuthentication} object from the given
50 * the new {@code PasswordAuthentication} object.
55 public PasswordAuthentication(String userName, char[] password) {
Authenticator.java 39 * as a {@link PasswordAuthentication} return value.
160 public static PasswordAuthentication requestPasswordAuthentication(
221 public static PasswordAuthentication requestPasswordAuthentication(
286 public static PasswordAuthentication requestPasswordAuthentication(
394 * @return The PasswordAuthentication collected from the
397 protected PasswordAuthentication getPasswordAuthentication() {
SocksSocketImpl.java 158 PasswordAuthentication pw =
160 new java.security.PrivilegedAction<PasswordAuthentication>() {
161 public PasswordAuthentication run() {
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldPasswordAuthenticationTest.java 20 import java.net.PasswordAuthentication;
29 new PasswordAuthentication(name, null);
35 PasswordAuthentication pa = new PasswordAuthentication(null, password);
OldAuthenticatorTest.java 21 import java.net.PasswordAuthentication;
30 PasswordAuthentication pa = Authenticator.requestPasswordAuthentication(
64 public PasswordAuthentication getPasswordAuthentication() {
URLConnectionTest.java 45 import java.net.PasswordAuthentication;
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
RecordingAuthenticator.java 19 import java.net.PasswordAuthentication;
28 public final PasswordAuthentication authentication;
30 public RecordingAuthenticator(PasswordAuthentication authentication) {
35 this(new PasswordAuthentication("username", "password".toCharArray()));
38 @Override protected PasswordAuthentication getPasswordAuthentication() {
  /frameworks/base/obex/javax/obex/
Authenticator.java 52 * needed) and password via a <code>PasswordAuthentication</code> object. The
88 * <code>PasswordAuthentication</code> that contains the correct user name
98 * @return a <code>PasswordAuthentication</code> object containing the user
101 PasswordAuthentication onAuthenticationChallenge(String description, boolean isUserIdRequired,
PasswordAuthentication.java 39 public final class PasswordAuthentication {
46 * Creates a new <code>PasswordAuthentication</code> with the user name and
53 public PasswordAuthentication(final byte[] userName, final byte[] password) {
ObexSession.java 126 PasswordAuthentication result = null;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
PasswordAuthenticationTest.java 20 import java.net.PasswordAuthentication;
25 * java.net.PasswordAuthentication#PasswordAuthentication(java.lang.String,
29 // Test for method java.net.PasswordAuthentication(java.lang.String,
33 PasswordAuthentication pa = new PasswordAuthentication(name, password);
45 * java.net.PasswordAuthentication#getPassword()
48 // Test for method char [] java.net.PasswordAuthentication.getPassword()
53 * java.net.PasswordAuthentication#getUserName()
57 // java.net.PasswordAuthentication.getUserName(
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapObexAuthenticator.java 23 import javax.obex.PasswordAuthentication;
45 public PasswordAuthentication onAuthenticationChallenge(String description,
47 PasswordAuthentication pa = null;
52 pa = new PasswordAuthentication(null, mSessionKey.getBytes());
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapAuthenticator.java 38 import javax.obex.PasswordAuthentication;
89 public PasswordAuthentication onAuthenticationChallenge(final String description,
93 return new PasswordAuthentication(null, mSessionKey.getBytes());
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
AuthenticatorAdapter.java 28 import java.net.PasswordAuthentication;
45 PasswordAuthentication auth = java.net.Authenticator.requestPasswordAuthentication(
68 PasswordAuthentication auth = java.net.Authenticator.requestPasswordAuthentication(
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 24 import java.net.PasswordAuthentication;
276 protected PasswordAuthentication getPasswordAuthentication() {
277 return new PasswordAuthentication(
  /external/ltp/testcases/network/stress/ssh/
ssh-stress 70 PasswordAuthentication no
89 PasswordAuthentication no\n\
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 36 import java.net.PasswordAuthentication;
437 protected PasswordAuthentication getPasswordAuthentication() {
438 return new PasswordAuthentication("user", "password".toCharArray());
544 protected PasswordAuthentication getPasswordAuthentication() {
545 return new PasswordAuthentication("user", "password".toCharArray());
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
  /prebuilts/sdk/10/
android.jar 

Completed in 972 milliseconds

1 2