Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/
DCarLocalServices.java42 private static final ArrayMap<Class<?>, Object> sLocalServiceObjects = field in CarLocalServices
57 synchronized (sLocalServiceObjects) { in getService()
58 return (T) sLocalServiceObjects.get(type); in getService()
66 synchronized (sLocalServiceObjects) { in addService()
67 if (sLocalServiceObjects.containsKey(type)) { in addService()
73 sLocalServiceObjects.put(type, service); in addService()
85 synchronized (sLocalServiceObjects) { in removeServiceForTest()
86 sLocalServiceObjects.remove(type); in removeServiceForTest()
97 synchronized (sLocalServiceObjects) { in removeAllServices()
98 sLocalServiceObjects.clear(); in removeAllServices()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiLocalServices.java34 private static final ArrayMap<Class<?>, Object> sLocalServiceObjects = field in WifiLocalServices
45 synchronized (sLocalServiceObjects) { in getService()
46 return (T) sLocalServiceObjects.get(type); in getService()
54 synchronized (sLocalServiceObjects) { in addService()
55 if (sLocalServiceObjects.containsKey(type)) { in addService()
58 sLocalServiceObjects.put(type, service); in addService()
67 synchronized (sLocalServiceObjects) { in removeServiceForTest()
68 sLocalServiceObjects.remove(type); in removeServiceForTest()