Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/
DSystemSensorManager.java188 List<Sensor> fullList = mFullRuntimeSensorListByDevice.get(deviceId); in getSensorList() local
189 if (fullList == null) { in getSensorList()
190 fullList = createRuntimeSensorListLocked(deviceId); in getSensorList()
197 list = fullList; in getSensorList()
200 for (Sensor i : fullList) { in getSensorList()
221 List<Sensor> fullList; in getFullSensorList() local
223 fullList = mFullRuntimeSensorListByDevice.get(deviceId); in getFullSensorList()
224 if (fullList == null) { in getFullSensorList()
225 fullList = createRuntimeSensorListLocked(deviceId); in getFullSensorList()
228 return fullList; in getFullSensorList()
DSensorManager.java434 final List<Sensor> fullList = getFullSensorList(); in getSensorList() local
439 list = fullList; in getSensorList()
442 for (Sensor i : fullList) { in getSensorList()
495 final List<Sensor> fullList = getFullDynamicSensorList(); in getDynamicSensorList() local
497 return Collections.unmodifiableList(fullList); in getDynamicSensorList()
500 for (Sensor i : fullList) { in getDynamicSensorList()
DLegacySensorManager.java72 final List<Sensor> fullList = mSensorManager.getFullSensorList(); in getSensors() local
73 for (Sensor i : fullList) { in getSensors()