Lines Matching refs:weaver

25 using ::aidl::android::hardware::weaver::IWeaver;
26 using ::aidl::android::hardware::weaver::WeaverConfig;
27 using ::aidl::android::hardware::weaver::WeaverReadResponse;
38 weaver = IWeaver::fromBinder( in SetUp()
40 ASSERT_NE(weaver, nullptr); in SetUp()
45 std::shared_ptr<IWeaver> weaver; member
54 auto ret = weaver->getConfig(&config); in TEST_P()
70 auto ret = weaver->getConfig(&config1); in TEST_P()
73 ret = weaver->getConfig(&config2); in TEST_P()
84 const auto configRet = weaver->getConfig(&config); in TEST_P()
89 const auto writeRet = weaver->write(lastSlot, KEY, VALUE); in TEST_P()
99 const auto ret = weaver->write(slotId, KEY, VALUE); in TEST_P()
105 const auto readRet = weaver->read(slotId, KEY, &response); in TEST_P()
122 const auto initialWriteRet = weaver->write(slotId, WRONG_KEY, VALUE); in TEST_P()
125 const auto overwriteRet = weaver->write(slotId, KEY, OTHER_VALUE); in TEST_P()
131 const auto readRet = weaver->read(slotId, KEY, &response); in TEST_P()
147 const auto ret = weaver->write(slotId, KEY, VALUE); in TEST_P()
153 weaver->read(slotId, WRONG_KEY, &response); in TEST_P()
168 const auto configRet = weaver->getConfig(&config); in TEST_P()
176 const auto writeRet = weaver->write(config.slots, KEY, VALUE); in TEST_P()
185 const auto configRet = weaver->getConfig(&config); in TEST_P()
197 weaver->read(config.slots, KEY, &response); in TEST_P()
214 const auto configRet = weaver->getConfig(&config); in TEST_P()
220 const auto writeRet = weaver->write(slotId, bigKey, VALUE); in TEST_P()
229 const auto configRet = weaver->getConfig(&config); in TEST_P()
235 const auto writeRet = weaver->write(slotId, KEY, bigValue); in TEST_P()
244 const auto configRet = weaver->getConfig(&config); in TEST_P()
254 weaver->read(slotId, bigKey, &response); in TEST_P()