Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:mSocket

39     private BluetoothSocket mSocket;
47 BluetoothConnection(BluetoothSocket mSocket) throws IOException {
48 this(mSocket, null);
51 BluetoothConnection(BluetoothSocket mSocket, BluetoothServerSocket mServerSocket)
53 this.mSocket = mSocket;
54 mOutputStream = mSocket.getOutputStream();
55 mInputStream = mSocket.getInputStream();
56 mDevice = mSocket.getRemoteDevice();
94 if (mSocket == null) {
98 mSocket.getRemoteDevice();
259 ParcelFileDescriptor mPfd = (ParcelFileDescriptor) field.get(mSocket);
265 field.set(mSocket, mPfd);
278 if (mSocket != null) {
280 mSocket.close();
286 mSocket = null;