Home
last modified time | relevance | path

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

/packages/services/Car/car-lib/src/android/car/hardware/property/
DCarPropertyManager.java1867 List<Integer> filteredPropertyIds = filterOutUserHalProperty(propertyIds); in unsubscribePropertyEventsInternal() local
1868 CarPropertyConfigs configs = getPropertyConfigsFromService(filteredPropertyIds); in unsubscribePropertyEventsInternal()
1874 for (int i = 0; i < filteredPropertyIds.size(); i++) { in unsubscribePropertyEventsInternal()
1875 int propertyId = filteredPropertyIds.get(i); in unsubscribePropertyEventsInternal()
3391 List<Integer> filteredPropertyIds = new ArrayList<>(); in filterOutUserHalProperty() local
3401 filteredPropertyIds.add(propertyIds.get(i)); in filterOutUserHalProperty()
3403 return filteredPropertyIds; in filterOutUserHalProperty()
3480 IntArray filteredPropertyIds = new IntArray(); in getPropertyConfigsFromService() local
3488 filteredPropertyIds.add(propertyId); in getPropertyConfigsFromService()
3492 result = mService.getPropertyConfigList(filteredPropertyIds.toArray()); in getPropertyConfigsFromService()