Searched refs:mSocket (Results 1 – 2 of 2) sorted by relevance
444 private BluetoothSocket mSocket; field in BluetoothConnection452 public BluetoothConnection(BluetoothSocket mSocket) throws IOException { in BluetoothConnection() argument453 this(mSocket, null); in BluetoothConnection()456 public BluetoothConnection(BluetoothSocket mSocket, BluetoothServerSocket mServerSocket) in BluetoothConnection() argument458 this.mSocket = mSocket; in BluetoothConnection()459 mOutputStream = mSocket.getOutputStream(); in BluetoothConnection()460 mInputStream = mSocket.getInputStream(); in BluetoothConnection()461 mDevice = mSocket.getRemoteDevice(); in BluetoothConnection()479 if (mSocket == null) { in isConnected()483 mSocket.getRemoteDevice(); in isConnected()[all …]
41 Socket(asio::ip::tcp::socket &socket) : mSocket(socket) {} in Socket()43 asio::ip::tcp::socket &get() { return mSocket; } in get()46 asio::ip::tcp::socket &mSocket;