Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/
DCarLocalServices.java35 private static final ArrayMap<Class<?>, Object> sLocalServiceObjects = field in CarLocalServices
47 synchronized (sLocalServiceObjects) { in getService()
48 return (T) sLocalServiceObjects.get(type); in getService()
56 synchronized (sLocalServiceObjects) { in addService()
57 if (sLocalServiceObjects.containsKey(type)) { in addService()
61 sLocalServiceObjects.put(type, service); in addService()
71 synchronized (sLocalServiceObjects) { in removeServiceForTest()
72 sLocalServiceObjects.remove(type); in removeServiceForTest()
81 synchronized (sLocalServiceObjects) { in removeAllServices()
82 sLocalServiceObjects.clear(); in removeAllServices()