Home
last modified time | relevance | path

Searched refs:zeros (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/
H A DBackgroundRestrictionTest.java1967 setUidBatteryConsumptions(stats, uids, zeros, zeros, zeros, zeros); in testBgCurrentDrainMonitorExemptions()
1990 setUidBatteryConsumptions(stats, uids, zeros, zeros, zeros, zeros); in testBgCurrentDrainMonitorExemptions()
2019 setUidBatteryConsumptions(stats, uids, zeros, zeros, zeros, zeros); in testBgCurrentDrainMonitorExemptions()
2037 setUidBatteryConsumptions(stats, uids, zeros, zeros, zeros, zeros); in testBgCurrentDrainMonitorExemptions()
2060 setUidBatteryConsumptions(stats, uids, zeros, zeros, zeros, zeros); in testBgCurrentDrainMonitorExemptions()
2075 setUidBatteryConsumptions(stats, uids, zeros, zeros, zeros, zeros); in testBgCurrentDrainMonitorExemptions()
2101 setUidBatteryConsumptions(stats, uids, zeros, zeros, zeros, zeros); in testBgCurrentDrainMonitorExemptions()
2132 setUidBatteryConsumptions(stats, uids, zeros, zeros, zeros, zeros); in testBgCurrentDrainMonitorExemptions()
2173 setUidBatteryConsumptions(stats, uids, zeros, zeros, zeros, zeros); in testBgCurrentDrainMonitorExemptions()
2203 setUidBatteryConsumptions(stats, uids, zeros, zeros, zeros, zeros); in testBgCurrentDrainMonitorExemptions()
[all …]
/aosp14/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServicesTests2/src/com/android/framework/multidexlegacytestservices/test2/
H A DServicesTests.java328 byte[] zeros = new byte[4 * 1024]; in tamperAllExtractedZips()
338 int length = (int) Math.min(zeros.length, fileLength - index); in tamperAllExtractedZips()
339 raf.write(zeros, 0, length); in tamperAllExtractedZips()
350 byte[] zeros = new byte[4 * 1024]; in tamperAllOdex()
355 Assert.assertTrue(fileLength > zeros.length + savedSizeForOdexHeader); in tamperAllOdex()
360 raf.write(zeros, 0, zeros.length); in tamperAllOdex()
/aosp14/frameworks/base/tools/aapt2/
H A Dformats.md40 | `x` | `header_padding` | Up to 3 bytes of zeros, if padding is necessary to align the…
42 | `y` | `data_padding` | Up to 3 bytes of zeros, if `data_size` is not a multiple of …
/aosp14/system/core/fs_mgr/libsnapshot/
H A Dutility.cpp116 std::vector<uint8_t> zeros(kDmSnapZeroFillSize, 0); in InitializeKernelCow() local
124 if (!android::base::WriteFully(fd, zeros.data(), kDmSnapZeroFillSize)) { in InitializeKernelCow()