HomeSort by relevance Sort by last modified time
    Searched refs:suids (Results 1 - 3 of 3) sorted by null

  /system/chre/platform/slpi/include/chre/platform/slpi/see/
see_helper.h 129 * @param suids A non-null pointer to a list of sensor UIDs that support the
131 * @param minNumSuids The minimum number of SUIDs it needs to find before
140 bool findSuidSync(const char *dataType, DynamicVector<sns_std_suid> *suids,
149 bool findSuidSync(const char *dataType, DynamicVector<sns_std_suid> *suids,
152 return findSuidSync(dataType, suids, minNumSuids, maxRetries,
195 * Only registered SUIDs will call the indication callback provided in init()
  /system/chre/platform/slpi/see/
see_helper.cc 402 auto *suids = static_cast<DynamicVector<sns_std_suid> *>(*arg); local
403 suids->push_back(suid);
417 DynamicVector<sns_std_suid> suids; local
422 .suid.arg = &suids,
435 // Note that there's no need to compare the SUIDs as no other calls
447 for (const auto& suid : suids) {
1754 DynamicVector<sns_std_suid> suids; local
1788 DynamicVector<sns_std_suid> suids; local
    [all...]
platform_sensor.cc 344 * Obtains the list of SUIDs and their attributes that support the specified
349 DynamicVector<sns_std_suid> suids; local
350 bool success = getSeeHelper()->findSuidSync(dataType, &suids, minNumSuids);
354 LOGD("Num of SUIDs found for '%s': %zu", dataType, suids.size());
356 for (const auto& suid : suids) {
447 // If there are more than one SUIDs that support the data type,

Completed in 306 milliseconds