Home
last modified time | relevance | path

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

/frameworks/native/services/sensorservice/
DSensorList.cpp30 int handle, SensorInterface* si, bool isForDebug, bool isVirtual) { in add() argument
35 mHandleMap.emplace(handle, Entry(si, isForDebug, isVirtual)); in add()
74 if (!e.isForDebug && !e.si->getSensor().isDynamicSensor()) { in getUserSensors()
100 if (!e.isForDebug && e.si->getSensor().isDynamicSensor()) { in getDynamicSensors()
DSensorList.h41 bool add(int handle, SensorInterface* si, bool isForDebug = false, bool isVirtual = false);
79 const bool isForDebug; member
82 si(si_), isForDebug(debug_), isVirtual(virtual_) { in Entry()