OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ServerSession
(Results
1 - 8
of
8
) 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/src/com/android/bluetooth/map/
BluetoothMapMasInstance.java
19
import javax.obex.
ServerSession
;
45
private
ServerSession
mServerSession = null;
298
mServerSession = new
ServerSession
(transport, mapServer, null);
299
if (D) Log.d(TAG, "
ServerSession
started.");
BluetoothMapService.java
26
import javax.obex.
ServerSession
;
[
all
...]
/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/pbap/
BluetoothPbapService.java
67
import javax.obex.
ServerSession
;
158
private
ServerSession
mServerSession = null;
506
mServerSession = new
ServerSession
(transport, mPbapServer, mAuth);
[
all
...]
/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 430 milliseconds