/system/core/libsparse/include/sparse/ |
sparse.h | 27 struct sparse_file; 35 * Creates a new sparse_file cookie that can be used to associate data 42 struct sparse_file *sparse_file_new(unsigned int block_size, int64_t len); 52 void sparse_file_destroy(struct sparse_file *s); 72 int sparse_file_add_data(struct sparse_file *s, 90 int sparse_file_add_fill(struct sparse_file *s, 113 int sparse_file_add_file(struct sparse_file *s, 140 int sparse_file_add_fd(struct sparse_file *s, 161 int sparse_file_write(struct sparse_file *s, int fd, bool gz, bool sparse, 176 int64_t sparse_file_len(struct sparse_file *s, bool sparse, bool crc) [all...] |
/system/core/libsparse/ |
sparse_file.h | 22 struct sparse_file { struct
|
sparse.c | 23 #include "sparse_file.h" 30 struct sparse_file *sparse_file_new(unsigned int block_size, int64_t len) 32 struct sparse_file *s = calloc(sizeof(struct sparse_file), 1); 49 void sparse_file_destroy(struct sparse_file *s) 55 int sparse_file_add_data(struct sparse_file *s, 61 int sparse_file_add_fill(struct sparse_file *s, 67 int sparse_file_add_file(struct sparse_file *s, 75 int sparse_file_add_fd(struct sparse_file *s, 81 unsigned int sparse_count_chunks(struct sparse_file *s [all...] |
simg2simg.c | 48 struct sparse_file *s; 50 struct sparse_file **out_s; 79 out_s = calloc(sizeof(struct sparse_file *), files);
|
sparse_read.c | 36 #include "sparse_file.h" 101 static int process_raw_chunk(struct sparse_file *s, unsigned int chunk_size, 139 static int process_fill_chunk(struct sparse_file *s, unsigned int chunk_size, 180 static int process_skip_chunk(struct sparse_file *s, unsigned int chunk_size, 223 static int process_chunk(struct sparse_file *s, int fd, off64_t offset, 275 static int sparse_file_read_sparse(struct sparse_file *s, int fd, bool crc) 357 static int sparse_file_read_normal(struct sparse_file *s, int fd) 409 int sparse_file_read(struct sparse_file *s, int fd, bool sparse, bool crc) 422 struct sparse_file *sparse_file_import(int fd, bool verbose, bool crc) 427 struct sparse_file *s [all...] |
img2simg.c | 51 struct sparse_file *s;
|
simg2img.c | 43 struct sparse_file *s;
|
append2simg.c | 29 #include "sparse_file.h" 54 struct sparse_file *sparse_output;
|
/system/core/fastboot/ |
fastboot.h | 39 struct sparse_file; 45 int fb_download_data_sparse(Transport* transport, struct sparse_file* s); 54 void fb_queue_flash_sparse(const char* ptn, struct sparse_file* s, uint32_t sz, size_t current,
|
fastboot.cpp | 717 static struct sparse_file **load_sparse_files(int fd, int max_size) 719 struct sparse_file* s = sparse_file_import_auto(fd, false, true); 729 sparse_file** out_s = reinterpret_cast<sparse_file**>(calloc(sizeof(struct sparse_file *), files + 1)); 809 sparse_file** s = load_sparse_files(fd, limit); 840 sparse_file** s; 844 std::vector<std::pair<sparse_file*, int64_t>> sparse_files; 845 s = reinterpret_cast<sparse_file**>(buf->data); [all...] |
engine.cpp | 160 void fb_queue_flash_sparse(const char* ptn, struct sparse_file* s, unsigned sz, size_t current, 367 status = fb_download_data_sparse(transport, reinterpret_cast<sparse_file*>(a->data));
|
protocol.cpp | 253 int fb_download_data_sparse(Transport* transport, struct sparse_file* s) {
|
/external/autotest/client/tests/wb_kupdate/ |
wb_kupdate.py | 49 # Remove sparse_file. 51 os.remove(self.sparse_file) 62 # Recreate sparse_file. 64 self.sparse_file) 66 # Format sparse_file. 68 (self.file_system, self.sparse_file)) 70 # Mount sparse_file. 72 (self.file_system, self.sparse_file, self.mount_point)) 149 current_size = self._get_disk_usage(self.sparse_file) 158 flushed_size = self._get_disk_usage(self.sparse_file) [all...] |
/system/extras/f2fs_utils/ |
f2fs_utils.c | 46 struct sparse_file *f2fs_sparse_file;
|
f2fs_ioutils.c | 87 struct sparse_file *f2fs_sparse_file;
|
/system/extras/ext4_utils/ |
ext4_utils.h | 121 extern struct sparse_file *ext4_sparse_file;
|
ext4_utils.c | 51 struct sparse_file *ext4_sparse_file;
|
/system/extras/verity/fec/ |
image.cpp | 208 std::vector<struct sparse_file *> files; 221 struct sparse_file *file;
|
/system/extras/verity/ |
build_verity_tree.cpp | 267 struct sparse_file *file;
|