Searched defs:auth (Results 1 - 8 of 8) 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 DServerSession.java67 * @param auth the authenticator to use with this connection
71 public ServerSession(ObexTransport trans, ServerRequestHandler handler, Authenticator auth) argument
73 mAuthenticator = auth;
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
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothServerSocket.java78 * @param auth require the remote device to be authenticated
84 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port) argument
87 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
93 * @param auth require the remote device to be authenticated
99 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, ParcelUuid uuid) argument
101 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, -1, uuid);
H A DBluetoothSocket.java141 * @param auth require the remote device to be authenticated
149 /*package*/ BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, argument
160 mAuth = auth;
208 * @param auth require the remote device to be authenticated
215 private BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, String address, argument
217 this(type, fd, auth, encrypt, new BluetoothDevice(address), port, null);
303 // TODO(BT) derive flag from auth and encrypt
H A DBluetoothAdapter.java1025 boolean auth, boolean encrypt) throws IOException {
1027 socket = new BluetoothServerSocket(BluetoothSocket.TYPE_RFCOMM, auth,
1024 createNewRfcommSocketAndRecord(String name, UUID uuid, boolean auth, boolean encrypt) argument
/frameworks/base/core/java/android/app/
H A DContextImpl.java1986 protected IContentProvider acquireProvider(Context context, String auth) { argument
1987 return mMainThread.acquireProvider(context, auth, mUser.getIdentifier(), true);
1991 protected IContentProvider acquireExistingProvider(Context context, String auth) { argument
1992 return mMainThread.acquireExistingProvider(context, auth, mUser.getIdentifier(), true);
2001 protected IContentProvider acquireUnstableProvider(Context c, String auth) { argument
2002 return mMainThread.acquireProvider(c, auth, mUser.getIdentifier(), false);
H A DActivityThread.java4446 Context c, String auth, int userId, boolean stable) {
4447 final IContentProvider provider = acquireExistingProvider(c, auth, userId, stable);
4461 getApplicationThread(), auth, userId, stable);
4465 Slog.e(TAG, "Failed to find provider info for " + auth);
4543 Context c, String auth, int userId, boolean stable) {
4545 final ProviderKey key = new ProviderKey(auth, userId);
4556 Log.i(TAG, "Acquiring provider " + auth + " for user " + userId
4744 for (String auth : auths) {
4745 final ProviderKey key = new ProviderKey(auth, userId);
4749 + " already published as " + auth);
4445 acquireProvider( Context c, String auth, int userId, boolean stable) argument
4542 acquireExistingProvider( Context c, String auth, int userId, boolean stable) argument
[all...]

Completed in 1873 milliseconds