Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/telemetry/publisher/statsconverters/
DAbstractAtomConverter.java213 boolean[] boolArray = new boolean[objList.size()]; in setPersistableBundleArrayField()
215 boolArray[i] = (Boolean) objList.get(i); in setPersistableBundleArrayField()
217 bundle.putBooleanArray(name, boolArray); in setPersistableBundleArrayField()
/packages/modules/StatsD/statsd/tests/e2e/
DEventMetric_e2e_test.cpp129 bool boolArray[boolArrayLength]; in TEST_F() local
130 boolArray[0] = 1; in TEST_F()
131 boolArray[1] = 0; in TEST_F()
137 boolArray, boolArrayLength, enumArray)); in TEST_F()
DGaugeMetric_e2e_push_test.cpp342 bool boolArray[boolArrayLength]; in TEST_F() local
343 boolArray[0] = 1; in TEST_F()
344 boolArray[1] = 0; in TEST_F()
350 boolArray, boolArrayLength, enumArray)); in TEST_F()
DCountMetric_e2e_test.cpp1182 bool boolArray[boolArrayLength]; in TEST() local
1183 boolArray[0] = 1; in TEST()
1184 boolArray[1] = 0; in TEST()
1190 boolArray, boolArrayLength, enumArray)); in TEST()
DDurationMetric_e2e_test.cpp1604 bool boolArray[boolArrayLength]; in TEST() local
1605 boolArray[0] = 1; in TEST()
1606 boolArray[1] = 0; in TEST()
/packages/services/Car/packages/ScriptExecutor/src/
DJniUtils.cpp283 std::vector<unsigned char> boolArray; in convertLuaTableToBundle() local
311 boolArray.push_back( in convertLuaTableToBundle()
337 bundleInsertionResult = bundleWrapper->putBooleanArray(key, boolArray); in convertLuaTableToBundle()
/packages/modules/StatsD/lib/libstatssocket/tests/
Dstats_event_test.cpp287 bool boolArray[3] = {0, 1, 1}; in TEST() local
301 AStatsEvent_writeBoolArray(event, boolArray, numElements); in TEST()
322 checkScalarArray(&buffer, numElements, BOOL_TYPE, boolArray); in TEST()
/packages/modules/StatsD/statsd/tests/
DFieldValue_test.cpp891 bool boolArray[boolArrayLength]; in TEST() local
892 boolArray[0] = 1; in TEST()
893 boolArray[1] = 0; in TEST()
898 12345, intArray, longArray, floatArray, stringArray, boolArray, boolArrayLength, in TEST()
DLogEvent_test.cpp527 bool boolArray[2] = {0, 1}; in TEST_P() local
540 AStatsEvent_writeBoolArray(event, boolArray, numElements); in TEST_P()
/packages/services/Car/service/src/com/android/car/telemetry/publisher/
DStatsPublisher.java310 boolean[] boolArray = (boolean[]) array; in isBundleLargeData()
311 bytes += boolArray.length; // Java boolean is 1 byte in isBundleLargeData()