Searched refs:auth (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/obex/javax/obex/
H A DSessionNotifier.java120 * @param auth the <code>Authenticator</code> to use with this connection;
127 ObexSession acceptAndOpen(ServerRequestHandler handler, Authenticator auth) throws IOException; argument
H A DClientSession.java258 // when auth is initiated by client ,save the digest
275 public void setAuthenticator(Authenticator auth) throws IOException { argument
276 if (auth == null) {
279 mAuthenticator = auth;
302 // when auth is initiated by client ,save the digest
H A DServerSession.java67 * @param auth the authenticator to use with this connection
71 public ServerSession(ObexTransport trans, ServerRequestHandler handler, Authenticator auth) argument
73 mAuthenticator = auth;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothServerSocket.java76 * @param auth require the remote device to be authenticated
82 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port) argument
85 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
H A DBluetoothSocket.java122 * @param auth require the remote device to be authenticated
130 /*package*/ BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, argument
145 mAuth = auth;
168 * @param auth require the remote device to be authenticated
175 private BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, String address, argument
177 this(type, fd, auth, encrypt, new BluetoothDevice(address), port, null);
H A DBluetoothAdapter.java981 boolean auth, boolean encrypt) throws IOException {
995 BluetoothSocket.TYPE_RFCOMM, auth, encrypt, channel);
980 createNewRfcommSocketAndRecord(String name, UUID uuid, boolean auth, boolean encrypt) argument
/frameworks/base/core/tests/coretests/src/com/android/internal/net/
H A DDNParserTest.java20 import javax.security.auth.x500.X500Principal;
H A DDomainNameValidatorTest.java46 import javax.security.auth.x500.X500Principal;
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DDefaultHttpClientTest.java31 import org.apache.http.auth.AuthenticationException;
32 import org.apache.http.auth.UsernamePasswordCredentials;
34 import org.apache.http.impl.auth.DigestScheme;
/frameworks/base/core/jni/
H A Dandroid_bluetooth_BluetoothSocket.cpp97 jboolean auth; local
124 auth = env->GetBooleanField(obj, field_mAuth);
130 lm |= auth ? RFCOMM_LM_AUTH : 0;
132 lm |= (auth && encrypt) ? RFCOMM_LM_SECURE : 0;
135 lm |= auth ? L2CAP_LM_AUTH : 0;
137 lm |= (auth && encrypt) ? L2CAP_LM_SECURE : 0;
344 jboolean auth; local
392 auth = env->GetBooleanField(obj, field_mAuth);
399 type, fd, auth, encrypt, addr_jstr, -1);
/frameworks/base/core/java/android/content/
H A DContentResolver.java916 String auth = uri.getAuthority();
917 if (auth != null) {
935 String auth = uri.getAuthority();
936 if (auth != null) {
H A DSyncStorageEngine.java741 + " auth=" + op.authority
772 + " auth=" + op.authority
869 for (AuthorityInfo auth : acc.authorities.values()) {
870 removing.put(auth.ident, auth);
916 + " auth=" + activeSyncContext.mSyncOperation.authority
942 + syncInfo.account + " auth=" + syncInfo.authority);
966 + " auth=" + authorityName + " source=" + source);
1556 + accountName + " auth=" + authorityName
1582 + accountName + " auth
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DDNParser.java25 import javax.security.auth.x500.X500Principal;
H A DDomainNameValidator.java30 import javax.security.auth.x500.X500Principal;

Completed in 216 milliseconds