OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BluetoothConnection
(Results
1 - 5
of
5
) sorted by null
/packages/services/Car/obd2-lib/src/com/android/car/obd2/connections/
BluetoothConnection.java
30
public class
BluetoothConnection
implements Obd2Connection.UnderlyingTransport {
40
public static final String TAG =
BluetoothConnection
.class.getSimpleName();
42
public
BluetoothConnection
(String bluetoothAddress) {
46
public
BluetoothConnection
(BluetoothDevice device) {
71
Log.w(TAG, "
BluetoothConnection
couldn't be established due to an exception: " + e);
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothSocketConnFacade.java
50
private Map<String,
BluetoothConnection
> mConnections =
51
new HashMap<String,
BluetoothConnection
>();
72
private
BluetoothConnection
getConnection(String connID) throws IOException {
76
Log.d("
BluetoothConnection
:getConnection: connID=" + connID);
77
BluetoothConnection
conn = null;
81
conn = (
BluetoothConnection
) mConnections.values().toArray()[0];
92
private String addConnection(
BluetoothConnection
conn) {
229
for (Map.Entry<String,
BluetoothConnection
> entry : mConnections.entrySet()) {
248
BluetoothConnection
conn = getConnection(connID);
349
BluetoothConnection
conn = getConnection(connID)
[
all
...]
BluetoothConnection.java
38
class
BluetoothConnection
{
47
BluetoothConnection
(BluetoothSocket mSocket) throws IOException {
51
BluetoothConnection
(BluetoothSocket mSocket, BluetoothServerSocket mServerSocket)
BluetoothFacade.java
59
private Map<String,
BluetoothConnection
> connections =
60
new HashMap<String,
BluetoothConnection
>();
515
BluetoothConnection
> entry : connections.entrySet()) {
/packages/services/Car/tests/obd2_app/src/com/google/android/car/obd2app/
Obd2CollectionTask.java
28
import com.android.car.obd2.connections.
BluetoothConnection
;
96
BluetoothConnection
bluetoothConnection
= new
BluetoothConnection
(deviceAddress);
97
if (!
bluetoothConnection
.isConnected()) {
101
mConnection = new Obd2Connection(
bluetoothConnection
);
Completed in 199 milliseconds