OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPropertiesMap
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/server/
BluetoothDeviceProperties.java
30
private final HashMap<String, Map<String, String>>
mPropertiesMap
;
34
mPropertiesMap
= new HashMap<String, Map<String, String>>();
44
synchronized(
mPropertiesMap
) {
45
propertyValues =
mPropertiesMap
.get(address);
75
mPropertiesMap
.put(address, propertyValues);
85
synchronized(
mPropertiesMap
) {
86
Map <String, String> propVal =
mPropertiesMap
.get(address);
89
mPropertiesMap
.put(address, propVal);
97
synchronized (
mPropertiesMap
) {
98
return (
mPropertiesMap
.get(address) != null)
[
all
...]
BluetoothAdapterProperties.java
29
private final Map<String, String>
mPropertiesMap
;
34
mPropertiesMap
= new HashMap<String, String>();
40
if (
mPropertiesMap
.isEmpty()) {
43
return
mPropertiesMap
.get(name);
51
mPropertiesMap
.clear();
55
return
mPropertiesMap
.isEmpty();
59
mPropertiesMap
.put(name, value);
66
mPropertiesMap
.clear();
96
mPropertiesMap
.put(name, newValue);
102
mPropertiesMap
.put("ObjectPath", adapterPath + "/dev_")
[
all
...]
/sdk/traceview/src/com/android/traceview/
DmTraceReader.java
59
private HashMap<String, String>
mPropertiesMap
;
76
mPropertiesMap
= new HashMap<String, String>();
470
mPropertiesMap
.put(key, value);
720
return
mPropertiesMap
;
Completed in 636 milliseconds