Home
last modified time | relevance | path

Searched refs:compression (Results 1 – 25 of 33) sorted by relevance

12

/system/core/fs_mgr/libsnapshot/
Dcow_format.cpp45 if (op.compression == kCowCompressNone) in operator <<()
47 else if (op.compression == kCowCompressGz) in operator <<()
49 else if (op.compression == kCowCompressBrotli) in operator <<()
52 os << (int)op.compression << "?, "; in operator <<()
Dcow_writer.cpp104 if (options_.compression == "gz") { in ParseOptions()
106 } else if (options_.compression == "brotli") { in ParseOptions()
108 } else if (options_.compression == "none") { in ParseOptions()
110 } else if (!options_.compression.empty()) { in ParseOptions()
111 LOG(ERROR) << "unrecognized compression: " << options_.compression; in ParseOptions()
289 op.compression = compression_; in EmitRawBlocks()
Dcow_api_test.cpp100 ASSERT_EQ(op->compression, kCowCompressNone); in TEST_F()
112 ASSERT_EQ(op->compression, kCowCompressNone); in TEST_F()
124 ASSERT_EQ(op->compression, kCowCompressNone); in TEST_F()
134 ASSERT_EQ(op->compression, kCowCompressNone); in TEST_F()
146 options.compression = "gz"; in TEST_F()
170 ASSERT_EQ(op->compression, kCowCompressGz); in TEST_F()
182 options.compression = "gz"; in TEST_F()
211 ASSERT_EQ(op->compression, kCowCompressGz); in TEST_F()
228 ASSERT_EQ(op->compression, kCowCompressGz); in TEST_F()
246 options.compression = "gz"; in TEST_F()
[all …]
Dcow_snapuserd_test.cpp314 options.compression = "gz"; in CreateCowDeviceWithCopyOverlap_2()
366 options.compression = "gz"; in CreateCowDeviceWithCopyOverlap_1()
425 options.compression = "gz"; in CreateCowDeviceOrderedOpsInverted()
478 options.compression = "gz"; in CreateCowDeviceOrderedOps()
531 options.compression = "gz"; in CreateCowDevice()
795 options.compression = "gz"; in CreateCowPartialFilledArea()
863 options.compression = "gz"; in CreateCowDevice()
Destimate_cow_from_nonab_ota.cpp39 DEFINE_string(compression, "gz", "Compression (options: none, gz, brotli)");
319 options.compression = FLAGS_compression; in AnalyzePartition()
Dinspect_cow.cpp125 if (decompress && op.type == kCowReplaceOp && op.compression != kCowCompressNone) { in Inspect()
Dcow_reader.cpp542 switch (op.compression) { in ReadData()
553 LOG(ERROR) << "Unknown compression type: " << op.compression; in ReadData()
Dsnapshot_reader_test.cpp151 options.compression = "gz"; in TEST_F()
Dmake_cow_from_ab_ota.cpp55 DEFINE_string(compression, "gz", "Compression type to use (none or gz)");
192 options.compression = FLAGS_compression; in ProcessPartition()
/system/extras/f2fs_utils/
Dmkf2fsuserimg.sh11 [-L LABEL] [--prjquota] [--casefold] [--compression] [--readonly]
12 [--sldc <num> [sload compression sub-options]]
13 <num>: number of the sload compression args, e.g. -a LZ4 counts as 2
14 when sload compression args are not given, <num> must be 0,
/system/libufdt/utils/tests/data/
Dmkdtboimg.cfg19 flags=0xd01 # override with another value, do zlib compression
22 flags=0xd02 # override with another value, do gzip compression
/system/update_engine/payload_generator/
Dcow_size_estimator.cc110 std::string compression) { in EstimateCowSize() argument
113 .compression = std::move(compression)}}; in EstimateCowSize()
Dcow_size_estimator.h36 std::string compression);
/system/core/fs_mgr/libsnapshot/include/libsnapshot/
Dcow_format.h90 uint8_t compression; member
118 uint8_t compression; member
Dcow_writer.h32 std::string compression; member
/system/incremental_delivery/incfs/tests/
Dincfs_test.cpp62 .compression = INCFS_COMPRESSION_KIND_NONE, in writeTestRanges()
69 .compression = INCFS_COMPRESSION_KIND_NONE, in writeTestRanges()
76 .compression = INCFS_COMPRESSION_KIND_NONE, in writeTestRanges()
84 .compression = INCFS_COMPRESSION_KIND_NONE, in writeTestRanges()
92 .compression = INCFS_COMPRESSION_KIND_NONE, in writeTestRanges()
100 .compression = INCFS_COMPRESSION_KIND_NONE, in writeTestRanges()
122 .compression = INCFS_COMPRESSION_KIND_NONE, in testWriteBlockAndPageRead()
181 .compression = INCFS_COMPRESSION_KIND_NONE, in testWaitForPendingReads()
481 .compression = INCFS_COMPRESSION_KIND_NONE, in TEST_F()
622 .compression = INCFS_COMPRESSION_KIND_NONE, in TEST_F()
[all …]
/system/libziparchive/
Dtest_ziparchive_large.py88 with zipfile.ZipFile(zip_path, 'w', compression=zipfile.ZIP_DEFLATED,
118 with zipfile.ZipFile(zip_path, 'w', compression=zipfile.ZIP_STORED,
132 with zipfile.ZipFile(zip_path, 'w', compression=zipfile.ZIP_DEFLATED,
/system/logging/logd/
DREADME.compression.md68compression without actually compressing”, it’s “chatty without doing the chatty elimination”, whi…
/system/update_engine/aosp/
Dcow_converter.cc61 {.block_size = static_cast<uint32_t>(block_size), .compression = "gz"}}; in ProcessPartition()
/system/update_engine/payload_consumer/
Dcow_writer_file_descriptor_unittest.cc52 const CowOptions options{.block_size = BLOCK_SIZE, .compression = "gz"}; in GetCowWriter()
/system/core/fs_mgr/libsnapshot/android/snapshot/
Dsnapshot.proto100 // True if compression is enabled, false otherwise.
186 // Whether compression/dm-user was used for any snapshots.
211 // Whether compression/dm-user was used for any snapshots.
/system/incremental_delivery/incfs/kernel-headers/linux/
Dincrementalfs.h247 __u8 compression; member
/system/apex/docs/
DREADME.md538 APEX compression is a new feature introduced in Android S. Its main purpose is
543 APEX compression minimizes the storage impact by using a highly-compressed
545 DEFLATE zip compression is used.
547 Note: compression doesn't provide any optimization in the following scenarios:
569 form with compression level of 9 and other files stored uncompressed.
573 * `original_apex`: deflated with compression level of 9
595 There are a few different parameters related to APEX compression available in
626 ### Supported compression algorithms
628 Android S only supports deflate zip compression.
/system/incremental_delivery/incfs/include/
Dincfs_ndk.h110 IncFsCompressionKind compression; member
/system/incremental_delivery/incfs/tests/util/
Dmap_ptr_test.cpp59 .compression = INCFS_COMPRESSION_KIND_NONE, in SetUp()

12