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

1 2

  /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 41 import java.net.PasswordAuthentication;
    [all...]
  /external/okhttp/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 121 PasswordAuthentication result = null;
  /libcore/luni/src/main/java/java/net/
PasswordAuthentication.java 26 public final class PasswordAuthentication {
41 public PasswordAuthentication(String userName, char[] password) {
Authenticator.java 54 protected PasswordAuthentication getPasswordAuthentication() {
123 public static synchronized PasswordAuthentication requestPasswordAuthentication(
173 public static synchronized PasswordAuthentication requestPasswordAuthentication(
227 public static PasswordAuthentication requestPasswordAuthentication(
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
PasswordAuthenticationTest.java 20 import java.net.PasswordAuthentication;
25 * @tests 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 * @tests java.net.PasswordAuthentication#getPassword()
48 // Test for method char [] java.net.PasswordAuthentication.getPassword()
53 * @tests java.net.PasswordAuthentication#getUserName()
57 // java.net.PasswordAuthentication.getUserName(
    [all...]
AuthenticatorTest.java 25 import java.net.PasswordAuthentication;
168 protected PasswordAuthentication getPasswordAuthentication() {
176 protected PasswordAuthentication getPasswordAuthentication() {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapAuthenticator.java 40 import javax.obex.PasswordAuthentication;
91 public PasswordAuthentication onAuthenticationChallenge(final String description,
95 PasswordAuthentication pa = new PasswordAuthentication(null, mSessionKey.getBytes());
  /external/openssh/regress/
addrmatch.sh 15 awk '/^passwordauthentication/ {print $2}'`
23 PasswordAuthentication no
25 PasswordAuthentication yes
27 PasswordAuthentication yes
test-exec.sh 286 PasswordAuthentication no
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 26 import java.net.PasswordAuthentication;
370 public PasswordAuthentication getPasswordAuthentication() {
371 return new PasswordAuthentication("test", "password"
646 protected PasswordAuthentication getPasswordAuthentication() {
647 return new PasswordAuthentication("user", "password"
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpAuthenticator.java 24 import java.net.PasswordAuthentication;
78 PasswordAuthentication auth;
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 26 import java.net.PasswordAuthentication;
274 protected PasswordAuthentication getPasswordAuthentication() {
275 return new PasswordAuthentication(
  /libcore/luni/src/main/java/libcore/net/http/
HttpURLConnectionImpl.java 29 import java.net.PasswordAuthentication;
443 PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 30 import java.net.PasswordAuthentication;
581 protected PasswordAuthentication getPasswordAuthentication() {
582 return new PasswordAuthentication("user", "password"
670 protected PasswordAuthentication getPasswordAuthentication() {
671 return new PasswordAuthentication("user", "password"
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 31 import java.net.PasswordAuthentication;
418 protected PasswordAuthentication getPasswordAuthentication() {
419 return new PasswordAuthentication("user", "password"
501 protected PasswordAuthentication getPasswordAuthentication() {
502 return new PasswordAuthentication("user", "password"
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/5/
android.jar 

Completed in 646 milliseconds

1 2