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.cpp343 bool boolArray[boolArrayLength]; in TEST_F() local
344 boolArray[0] = 1; in TEST_F()
345 boolArray[1] = 0; in TEST_F()
351 boolArray, boolArrayLength, enumArray)); in TEST_F()
DCountMetric_e2e_test.cpp1189 bool boolArray[boolArrayLength]; in TEST() local
1190 boolArray[0] = 1; in TEST()
1191 boolArray[1] = 0; in TEST()
1197 boolArray, boolArrayLength, enumArray)); in TEST()
DDurationMetric_e2e_test.cpp1617 bool boolArray[boolArrayLength]; in TEST() local
1618 boolArray[0] = 1; in TEST()
1619 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.cpp739 bool boolArray[boolArrayLength]; in TEST() local
740 boolArray[0] = 1; in TEST()
741 boolArray[1] = 0; in TEST()
746 12345, intArray, longArray, floatArray, stringArray, boolArray, boolArrayLength, in TEST()
DLogEvent_test.cpp528 bool boolArray[2] = {0, 1}; in TEST_P() local
541 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()