OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mProfileConnectionState
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterProperties.java
50
private HashMap<Integer, Pair<Integer, Integer>>
mProfileConnectionState
;
71
if (
mProfileConnectionState
==null) {
72
mProfileConnectionState
= new HashMap<Integer, Pair<Integer, Integer>>();
74
mProfileConnectionState
.clear();
81
if (
mProfileConnectionState
!= null) {
82
mProfileConnectionState
.clear();
83
mProfileConnectionState
= null;
278
Pair<Integer, Integer> p =
mProfileConnectionState
.get(profile);
383
//
mProfileConnectionState
is a hashmap -
402
Pair<Integer, Integer> stateNumDev =
mProfileConnectionState
.get(profile)
[
all
...]
/packages/apps/Settings/src/com/android/settings/bluetooth/
CachedBluetoothDevice.java
53
private HashMap<LocalBluetoothProfile, Integer>
mProfileConnectionState
;
139
mProfileConnectionState
.put(profile, newProfileState);
178
mProfileConnectionState
= new HashMap<LocalBluetoothProfile, Integer>();
349
if (
mProfileConnectionState
== null ||
350
mProfileConnectionState
.get(profile) == null) {
353
mProfileConnectionState
.put(profile, state);
355
return
mProfileConnectionState
.get(profile);
364
mProfileConnectionState
.put(profile, BluetoothProfile.STATE_DISCONNECTED);
Completed in 1227 milliseconds