Home
last modified time | relevance | path

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

/frameworks/native/services/stats/
DStatsAidl.cpp223 case VendorAtomValue::byteArrayValue: { in reportVendorAtom()
224 const std::optional<std::vector<uint8_t>>& byteArrayValue = in reportVendorAtom() local
225 atomValue.get<VendorAtomValue::byteArrayValue>(); in reportVendorAtom()
226 if (!byteArrayValue) { in reportVendorAtom()
230 AStatsEvent_writeByteArray(event, byteArrayValue->data(), byteArrayValue->size()); in reportVendorAtom()
/frameworks/hardware/interfaces/stats/aidl/test_client/
DAidlStatsClient.cpp74 std::vector<uint8_t> byteArrayValue = {21, 50, 3}; in buildVendorAtom() local
75 tmp.set<VendorAtomValue::byteArrayValue>(byteArrayValue); in buildVendorAtom()
/frameworks/hardware/interfaces/stats/aidl/vts/functional/
DVtsHalStatsTargetTest.cpp79 std::vector<uint8_t> byteArrayValue = {21, 50, 3, 10}; in TEST_P() local
80 tmp.set<VendorAtomValue::byteArrayValue>(byteArrayValue); in TEST_P()
/frameworks/hardware/interfaces/stats/aidl/android/frameworks/stats/
DVendorAtomValue.aidl33 @nullable byte[] byteArrayValue;
/frameworks/hardware/interfaces/stats/aidl/aidl_api/android.frameworks.stats/current/android/frameworks/stats/
DVendorAtomValue.aidl47 @nullable byte[] byteArrayValue;
/frameworks/hardware/interfaces/stats/aidl/aidl_api/android.frameworks.stats/2/android/frameworks/stats/
DVendorAtomValue.aidl47 @nullable byte[] byteArrayValue;
/frameworks/proto_logging/stats/stats_log_api_gen/
Dtest_api_gen_vendor.cpp215 EXPECT_EQ(atom.values[3].get<VendorAtomValue::byteArrayValue>(), nestedMessageBytes); in TEST()
218 string nestedMessageStringResult(atom.values[3].get<VendorAtomValue::byteArrayValue>()->begin(), in TEST()
219 atom.values[3].get<VendorAtomValue::byteArrayValue>()->end()); in TEST()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/subscription/
DSubscriptionDatabaseManager.java764 byte[] byteArrayValue; in setSubscriptionProperty()
766 byteArrayValue = Base64.decode((String) value, Base64.DEFAULT); in setSubscriptionProperty()
768 byteArrayValue = (byte[]) value; in setSubscriptionProperty()
774 this, subId, byteArrayValue); in setSubscriptionProperty()