Home
last modified time | relevance | path

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

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothRfcommFacade.java345 private final BluetoothSocket mmSocket; field in BluetoothRfcommFacade.ConnectThread
354 mmSocket = tmp; in ConnectThread()
361 mmSocket.connect(); in run()
362 conn = new BluetoothConnection(mmSocket); in run()
372 if (mmSocket != null) { in cancel()
374 mmSocket.close(); in cancel()
382 return mmSocket; in getSocket()
390 private BluetoothSocket mmSocket; field in BluetoothRfcommFacade.AcceptThread
406 mmSocket = mmServerSocket.accept(mTimeout); in run()
407 BluetoothConnection conn = new BluetoothConnection(mmSocket, mmServerSocket); in run()
[all …]
/external/sl4a/Utils/src/com/googlecode/android_scripting/
DSimpleServer.java89 private final Socket mmSocket; field in SimpleServer.ConnectionThread
97 mmSocket = socket; in ConnectionThread()
110 handleRPCConnection(mmSocket, UID, reader, writer); in run()
113 handleConnection(mmSocket); in run()
128 if (mmSocket != null) { in close()
130 mmSocket.close(); in close()