Home
last modified time | relevance | path

Searched refs:repeatedBoolValue (Results 1 – 8 of 8) sorted by relevance

/frameworks/native/services/stats/
DStatsAidl.cpp206 case VendorAtomValue::repeatedBoolValue: { in reportVendorAtom()
207 const std::optional<std::vector<bool>>& repeatedBoolValue = in reportVendorAtom() local
208 atomValue.get<VendorAtomValue::repeatedBoolValue>(); in reportVendorAtom()
209 if (!repeatedBoolValue) { in reportVendorAtom()
213 const std::vector<bool>& repeatedBoolVector = *repeatedBoolValue; in reportVendorAtom()
214 bool boolArray[repeatedBoolValue->size()]; in reportVendorAtom()
/frameworks/hardware/interfaces/stats/aidl/test_client/
DAidlStatsClient.cpp71 std::vector<bool> repeatedBoolValue = {true, false, true}; in buildVendorAtom() local
72 tmp.set<VendorAtomValue::repeatedBoolValue>(repeatedBoolValue); in buildVendorAtom()
/frameworks/hardware/interfaces/stats/aidl/vts/functional/
DVtsHalStatsTargetTest.cpp76 std::vector<bool> repeatedBoolValue = {true, false, true}; in TEST_P() local
77 tmp.set<VendorAtomValue::repeatedBoolValue>(repeatedBoolValue); in TEST_P()
/frameworks/hardware/interfaces/stats/aidl/android/frameworks/stats/
DVendorAtomValue.aidl32 @nullable boolean[] repeatedBoolValue;
/frameworks/hardware/interfaces/stats/aidl/aidl_api/android.frameworks.stats/current/android/frameworks/stats/
DVendorAtomValue.aidl46 @nullable boolean[] repeatedBoolValue;
/frameworks/hardware/interfaces/stats/aidl/aidl_api/android.frameworks.stats/2/android/frameworks/stats/
DVendorAtomValue.aidl46 @nullable boolean[] repeatedBoolValue;
/frameworks/hardware/interfaces/stats/aidl/vts/java/apps/vtsistatsapp/src/
DVtsVendorAtomJavaTest.java135 VendorAtomValue.repeatedBoolValue(new boolean[] {true, false, false, true}); in testReportVendorAtomRepeated()
/frameworks/proto_logging/stats/stats_log_api_gen/
Dtest_api_gen_vendor.cpp173 EXPECT_EQ(atom.values[5].get<VendorAtomValue::repeatedBoolValue>(), repeatedBool); in TEST()