OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BluetoothConnection
(Results
1 - 3
of
3
) 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/
BluetoothRfcommFacade.java
62
private Map<String,
BluetoothConnection
>
63
connections = new HashMap<String,
BluetoothConnection
>();
75
private
BluetoothConnection
getConnection(String connID) throws IOException {
76
BluetoothConnection
conn = null;
80
conn = (
BluetoothConnection
) connections.values().toArray()[0];
88
private String addConnection(
BluetoothConnection
conn) {
180
for (Map.Entry<String,
BluetoothConnection
> entry : connections.entrySet()) {
194
BluetoothConnection
conn = getConnection(connID);
216
BluetoothConnection
conn = getConnection(connID);
231
BluetoothConnection
conn = getConnection(connID)
[
all
...]
BluetoothFacade.java
59
private Map<String,
BluetoothConnection
> connections =
60
new HashMap<String,
BluetoothConnection
>();
486
for (Map.Entry<String,
BluetoothConnection
> entry : connections.entrySet()) {
Completed in 72 milliseconds