Searched defs:mConnSocket (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapMasInstance.java65 private BluetoothSocket mConnSocket = null; field in class:BluetoothMapMasInstance
348 if (mConnSocket != null) {
370 BluetoothObexTransport transport = new BluetoothObexTransport(mConnSocket);
392 return (mConnSocket != null);
433 if (mConnSocket != null) {
435 mConnSocket.close();
439 mConnSocket = null;
465 mConnSocket = socket;
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
H A DSapService.java82 private BluetoothSocket mConnSocket = null; field in class:SapService
201 if (mConnSocket != null) {
203 mConnSocket.close();
204 mConnSocket = null;
253 mSapServer = new SapServer(mSessionStatusHandler, this, mConnSocket.getInputStream(), mConnSocket.getOutputStream());
319 mConnSocket = mServerSocket.accept();
322 if (mConnSocket == null) {
323 Log.w(TAG, "mConnSocket is null");
326 mRemoteDevice = mConnSocket
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapService.java179 private BluetoothSocket mConnSocket = null; field in class:BluetoothPbapService
305 if (mConnSocket != null) {
415 if (mConnSocket != null) {
417 mConnSocket.close();
418 mConnSocket = null;
477 BluetoothObexTransport transport = new BluetoothObexTransport(mConnSocket);
558 mConnSocket = serverSocket.accept();
562 if (mConnSocket == null) {
563 Log.w(TAG, "mConnSocket is null");
566 mRemoteDevice = mConnSocket
[all...]

Completed in 81 milliseconds