Home
last modified time | relevance | path

Searched refs:l2capSocket (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/
DObexServerSockets.java62 BluetoothServerSocket l2capSocket) { in ObexServerSockets() argument
65 mL2capSocket = l2capSocket; in ObexServerSockets()
125 BluetoothServerSocket l2capSocket = null; in create() local
139 if (l2capSocket == null) { in create()
141 l2capSocket = bt.listenUsingL2capOn(l2capPsm); in create()
143 l2capSocket = bt.listenUsingInsecureL2capOn(l2capPsm); in create()
175 ObexServerSockets sockets = new ObexServerSockets(validator, rfcommSocket, l2capSocket); in create()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/mapclient/
DMasClient.java110 int l2capSocket = mSdpMasRecord.getL2capPsm(); in connect() local
112 if (l2capSocket != L2CAP_INVALID_PSM) { in connect()
113 Log.d(TAG, "Connecting to OBEX on L2CAP channel " + l2capSocket); in connect()
114 mSocket = mRemoteDevice.createL2capSocket(l2capSocket); in connect()