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

  /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;
88 private ServerSession mSession;
121 if (D) Log.d(TAG, "Create ServerSession with transport " + mTransport.toString());
122 mSession = new ServerSession(mTransport, this, null);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java 23 import javax.obex.ServerSession;
126 private ServerSession mServerSession = null;
310 mServerSession = new ServerSession(transport, mMapServer, mAuth);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 67 import javax.obex.ServerSession;
158 private ServerSession mServerSession = null;
476 mServerSession = new ServerSession(transport, mPbapServer, mAuth);
  /frameworks/base/obex/javax/obex/
ServerOperation.java 67 private ServerSession mParent;
103 public ServerOperation(ServerSession p, InputStream in, int request, int maxSize,
ServerSession.java 42 * This class in an implementation of the OBEX ServerSession.
45 public final class ServerSession extends ObexSession implements Runnable {
47 private static final String TAG = "Obex ServerSession";
64 * Creates new ServerSession.
71 public ServerSession(ObexTransport trans, ServerRequestHandler handler, Authenticator auth)

Completed in 575 milliseconds