Home
last modified time | relevance | path

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

/aosp12/hardware/interfaces/contexthub/1.0/vts/functional/
H A DVtsHalContexthubV1_0TargetTest.cpp89 ALOGD("TestRegisterCallback called, hubId %" PRIu32, getHubId()); in TEST_P()
94 ALOGD("TestRegisterNullCallback called, hubId %" PRIu32, getHubId()); in TEST_P()
112 ALOGD("TestQueryApps called, hubId %u", getHubId()); in TEST_P()
116 Result result = hubApi->queryApps(getHubId()); in TEST_P()
194 Result result = hubApi->sendMessageToHub(getHubId(), msg); in TEST_P()
213 Result result = hubApi->loadNanoApp(getHubId(), emptyApp, cb->expectedTxnId); in TEST_P()
221 Result result = hubApi->unloadNanoApp(getHubId(), kNonExistentAppId, cb->expectedTxnId); in TEST_P()
229 Result result = hubApi->enableNanoApp(getHubId(), kNonExistentAppId, cb->expectedTxnId); in TEST_P()
237 Result result = hubApi->disableNanoApp(getHubId(), kNonExistentAppId, cb->expectedTxnId); in TEST_P()
/aosp12/hardware/interfaces/contexthub/1.2/vts/functional/
H A DVtsHalContexthubV1_2TargetTest.cpp79 return hubApi->registerCallback_1_2(getHubId(), cb); in registerCallback_1_2()
109 ALOGD("TestRegisterCallback called, hubId %" PRIu32, getHubId()); in TEST_P()
114 ALOGD("TestRegisterNullCallback called, hubId %" PRIu32, getHubId()); in TEST_P()
161 ALOGD("TestQueryApps called, hubId %u", getHubId()); in TEST_P()
165 Result result = hubApi->queryApps(getHubId()); in TEST_P()
/aosp12/hardware/interfaces/contexthub/common/vts/
H A DContexthubHidlTestBase.h41 uint32_t getHubId() { return std::stoi(std::get<1>(GetParam())); } in getHubId() function
44 return hubApi->registerCallback(getHubId(), cb); in registerCallback()