Home
last modified time | relevance | path

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

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothRfcommFacade.java444 private BluetoothSocket mSocket; field in BluetoothConnection
452 public BluetoothConnection(BluetoothSocket mSocket) throws IOException { in BluetoothConnection() argument
453 this(mSocket, null); in BluetoothConnection()
456 public BluetoothConnection(BluetoothSocket mSocket, BluetoothServerSocket mServerSocket) in BluetoothConnection() argument
458 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 …]
/external/parameter-framework/upstream/remote-processor/
DSocket.h41 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;