Home
last modified time | relevance | path

Searched refs:repeatedStringValue (Results 1 – 9 of 9) sorted by relevance

/frameworks/native/services/stats/
DStatsAidl.cpp186 case VendorAtomValue::repeatedStringValue: { in reportVendorAtom()
187 const std::optional<std::vector<std::optional<std::string>>>& repeatedStringValue = in reportVendorAtom() local
188 atomValue.get<VendorAtomValue::repeatedStringValue>(); in reportVendorAtom()
189 if (!repeatedStringValue) { in reportVendorAtom()
194 *repeatedStringValue; in reportVendorAtom()
/frameworks/hardware/interfaces/stats/aidl/test_client/
DAidlStatsClient.cpp68 std::vector<std::optional<std::string>> repeatedStringValue = {"str1", "str2", "str3"}; in buildVendorAtom() local
69 tmp.set<VendorAtomValue::repeatedStringValue>(repeatedStringValue); in buildVendorAtom()
/frameworks/hardware/interfaces/stats/aidl/vts/functional/
DVtsHalStatsTargetTest.cpp73 std::vector<std::optional<std::string>> repeatedStringValue = {"str1", "str2", "str3"}; in TEST_P() local
74 tmp.set<VendorAtomValue::repeatedStringValue>(repeatedStringValue); in TEST_P()
/frameworks/hardware/interfaces/stats/aidl/android/frameworks/stats/
DVendorAtomValue.aidl31 @nullable String[] repeatedStringValue;
/frameworks/hardware/interfaces/stats/aidl/aidl_api/android.frameworks.stats/current/android/frameworks/stats/
DVendorAtomValue.aidl45 @nullable String[] repeatedStringValue;
/frameworks/hardware/interfaces/stats/aidl/aidl_api/android.frameworks.stats/2/android/frameworks/stats/
DVendorAtomValue.aidl45 @nullable String[] repeatedStringValue;
/frameworks/proto_logging/stats/stats_log_api_gen/
Dtest_api_gen_vendor.cpp177 EXPECT_TRUE(atom.values[9].get<VendorAtomValue::repeatedStringValue>().has_value()); in TEST()
178 EXPECT_EQ(atom.values[9].get<VendorAtomValue::repeatedStringValue>()->size(), in TEST()
180 const auto& repeatedStringValue = *atom.values[9].get<VendorAtomValue::repeatedStringValue>(); in TEST() local
182 EXPECT_EQ(repeatedString[i], *repeatedStringValue[i]); in TEST()
/frameworks/hardware/interfaces/stats/aidl/vts/java/apps/vtsistatsapp/src/
DVtsVendorAtomJavaTest.java133 atom.values[8] = VendorAtomValue.repeatedStringValue(new String[] {"abc", "def", "xyz"}); in testReportVendorAtomRepeated()
/frameworks/proto_logging/stats/stats_log_api_gen/test_java/src/com/android/test/statslogapigen/
DVendorAtomCodeGenTest.java205 final String[] repeatedStringValue = atom.values[9].getRepeatedStringValue(); in testCreateVendorAtom4ApiGen() local
207 assertThat(repeatedString[i]).isEqualTo(repeatedStringValue[i]); in testCreateVendorAtom4ApiGen()