Lines Matching refs:pidIt
63 for (const auto &pidIt : it->second) { in GetSensorState() local
64 if (pidIt.second.GetSensorState()) { in GetSensorState()
90 for (const auto &pidIt : it->second) { in GetBestSensorInfo() local
91 int64_t curSamplingPeriodNs = pidIt.second.GetSamplingPeriodNs(); in GetBestSensorInfo()
92 int64_t curReportDelayNs = pidIt.second.GetMaxReportDelayNs(); in GetBestSensorInfo()
115 for (const auto &pidIt : it->second) { in OnlyCurPidSensorEnabled() local
116 if (!pidIt.second.GetSensorState()) { in OnlyCurPidSensorEnabled()
119 if (pidIt.first != pid) { in OnlyCurPidSensorEnabled()
252 auto pidIt = it->second.find(pid); in UpdateSensorInfo() local
253 if (pidIt == it->second.end()) { in UpdateSensorInfo()
271 auto pidIt = it->second.find(pid); in RemoveSubscriber() local
272 if (pidIt != it->second.end()) { in RemoveSubscriber()
273 it->second.erase(pidIt); in RemoveSubscriber()
332 auto pidIt = it->second.find(pid); in ClearCurPidSensorInfo() local
333 if (pidIt == it->second.end()) { in ClearCurPidSensorInfo()
337 pidIt = it->second.erase(pidIt); in ClearCurPidSensorInfo()
353 auto pidIt = it->second.find(pid); in DestroySensorChannel() local
354 if (pidIt == it->second.end()) { in DestroySensorChannel()
358 pidIt = it->second.erase(pidIt); in DestroySensorChannel()
393 auto pidIt = it->second.find(pid); in GetCurPidSensorInfo() local
394 if (pidIt == it->second.end()) { in GetCurPidSensorInfo()
398 sensorInfo.SetSamplingPeriodNs(pidIt->second.GetSamplingPeriodNs()); in GetCurPidSensorInfo()
399 sensorInfo.SetMaxReportDelayNs(pidIt->second.GetMaxReportDelayNs()); in GetCurPidSensorInfo()
597 for (const auto &pidIt : sensorIt.second) { in GetSensorChannelInfo() local
598 int32_t pid = pidIt.first; in GetSensorChannelInfo()
610 int64_t samplingPeriodNs = pidIt.second.GetSamplingPeriodNs(); in GetSensorChannelInfo()
611 int64_t maxReportDelayNs = pidIt.second.GetMaxReportDelayNs(); in GetSensorChannelInfo()
760 auto pidIt = activeInfoCBPidSet_.find(pid); in CallingService() local
761 if (pidIt != activeInfoCBPidSet_.end()) { in CallingService()