Home | History | Annotate | Download | only in connections

Lines Matching refs:mSocket

38     private BluetoothSocket mSocket = null;
68 mSocket = mDevice.createRfcommSocketToServiceRecord(SERIAL_PORT_PROFILE);
69 mSocket.connect();
72 mSocket = null;
75 return mSocket.isConnected();
80 return mSocket != null && mSocket.isConnected();
86 mSocket.close();
91 mSocket = null;
106 return mSocket.getInputStream();
118 return mSocket.getOutputStream();