Home
last modified time | relevance | path

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

/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-java-source/gen/android/aidl/loggable/
H A DILoggableInterface.java10 …@Override public java.lang.String[] LogThis(boolean boolValue, boolean[] boolArray, byte byteValue… in LogThis() argument
163 …@Override public java.lang.String[] LogThis(boolean boolValue, boolean[] boolArray, byte byteValue… in LogThis() argument
172 _data.writeBooleanArray(boolArray); in LogThis()
207 …return getDefaultImpl().LogThis(boolValue, boolArray, byteValue, byteArray, charValue, charArray, … in LogThis()
212 _reply.readBooleanArray(boolArray); in LogThis()
254 …public java.lang.String[] LogThis(boolean boolValue, boolean[] boolArray, byte byteValue, byte[] b… in LogThis() argument
/aosp12/packages/services/Car/service/src/com/android/car/telemetry/publisher/statsconverters/
H A DAbstractAtomConverter.java203 boolean[] boolArray = new boolean[objList.size()]; in setPersistableBundleArrayField()
205 boolArray[i] = (Boolean) objList.get(i); in setPersistableBundleArrayField()
207 bundle.putBooleanArray(name, boolArray); in setPersistableBundleArrayField()
/aosp12/system/tools/aidl/tests/
H A Daidl_test_client_loggable_interface.cpp59 vector<bool> boolArray{false, true}; in TEST_F() local
85 status = loggable->LogThis(boolValue, &boolArray, byteValue, &byteArray, charValue, &charArray, in TEST_F()
H A Daidl_test_client_ndk_loggable_interface.cpp65 vector<bool> boolArray{false, true}; in TEST_F() local
90 status = loggable->LogThis(boolValue, &boolArray, byteValue, &byteArray, charValue, &charArray, in TEST_F()
/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-cpp-source/gen/android/aidl/loggable/
H A DILoggableInterface.cpp36 …tatus BpLoggableInterface::LogThis(bool boolValue, ::std::vector<bool>* boolArray, int8_t byteValu… in LogThis() argument
46 … _transaction_log.input_args.emplace_back("boolArray", ::android::internal::ToString(*boolArray)); in LogThis()
76 _aidl_ret_status = _aidl_data.writeBoolVector(*boolArray); in LogThis()
158 …return ILoggableInterface::getDefaultImpl()->LogThis(boolValue, boolArray, byteValue, byteArray, c… in LogThis()
174 _aidl_ret_status = _aidl_reply.readBoolVector(boolArray); in LogThis()
231 … _transaction_log.output_args.emplace_back("boolArray", ::android::internal::ToString(*boolArray)); in LogThis()
/aosp12/system/tools/aidl/tests/android/aidl/loggable/
H A DILoggableInterface.aidl6 String[] LogThis(boolean boolValue, inout boolean[] boolArray, byte byteValue, in LogThis() argument
/aosp12/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-cpp-source/gen/include/android/aidl/loggable/
H A DBpLoggableInterface.h20 …::android::binder::Status LogThis(bool boolValue, ::std::vector<bool>* boolArray, int8_t byteValue…
H A DILoggableInterface.h24 …virtual ::android::binder::Status LogThis(bool boolValue, ::std::vector<bool>* boolArray, int8_t b…
/aosp12/packages/services/Car/service/src/com/android/car/telemetry/publisher/
H A DStatsPublisher.java291 boolean[] boolArray = (boolean[]) array; in isBundleLargeData()
292 bytes += boolArray.length; // Java boolean is 1 byte in isBundleLargeData()