HomeSort by relevance Sort by last modified time
    Searched refs:ServerSession (Results 1 - 10 of 10) sorted by null

  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMnsService.java 32 import javax.obex.ServerSession;
118 new ServerSession(transport, srv, null);
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
TestSequencer.java 11 import javax.obex.ServerSession;
37 private ServerSession mServerSession = null;
117 mServerSession = new ServerSession(mServerTransport,
SdpManagerTest.java 10 import javax.obex.ServerSession;
245 ServerSession serverSession = new ServerSession(serverTransport,
266 serverSession.close();
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMasInstance.java 23 import javax.obex.ServerSession;
61 private ServerSession mServerSession = null;
373 mServerSession = new ServerSession(transport, mapServer, null);
374 if (D) Log.d(TAG, " ServerSession started.");
  /packages/apps/Bluetooth/src/com/android/bluetooth/
ObexServerSockets.java 22 import javax.obex.ServerSession;
332 // Create and detach a selfdestructing ServerSession to respond to any
334 new ServerSession(obexTrans,
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
TestActivity.java 69 import javax.obex.ServerSession;
571 public ServerSession acceptAndOpen(ServerRequestHandler handler, Authenticator auth)
582 return new ServerSession((ObexTransport)tt, handler, auth);
586 public ServerSession acceptAndOpen(ServerRequestHandler handler) throws IOException {
BluetoothOppObexServerSession.java 57 import javax.obex.ServerSession;
90 private ServerSession mSession;
117 if (D) Log.d(TAG, "Create ServerSession with transport " + mTransport.toString());
118 mSession = new ServerSession(mTransport, this, null);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 69 import javax.obex.ServerSession;
160 private ServerSession mServerSession = null;
509 mServerSession = new ServerSession(transport, mPbapServer, mAuth);
    [all...]
  /frameworks/base/obex/javax/obex/
ServerOperation.java 74 private ServerSession mParent;
125 public ServerOperation(ServerSession p, InputStream in, int request, int maxSize,
ServerSession.java 44 * This class in an implementation of the OBEX ServerSession.
47 public final class ServerSession extends ObexSession implements Runnable {
49 private static final String TAG = "Obex ServerSession";
67 * Creates new ServerSession.
74 public ServerSession(ObexTransport trans, ServerRequestHandler handler, Authenticator auth)

Completed in 1561 milliseconds