Lines Matching defs:len
87 int64_t len; member
134 static int file_pad(struct output_file* out, int64_t len) { in file_pad()
146 static int file_write(struct output_file* out, void* data, size_t len) { in file_write()
205 static int gz_file_pad(struct output_file* out, int64_t len) { in gz_file_pad()
228 static int gz_file_write(struct output_file* out, void* data, size_t len) { in gz_file_write()
285 static int callback_file_write(struct output_file* out, void* data, size_t len) { in callback_file_write()
305 int read_all(int fd, void* buf, size_t len) { in read_all()
325 static bool write_fd_chunk_range(int fd, int64_t offset, uint64_t len, T callback) { in write_fd_chunk_range()
368 static int write_sparse_fill_chunk(struct output_file* out, uint64_t len, uint32_t fill_val) { in write_sparse_fill_chunk()
399 static int write_sparse_data_chunk(struct output_file* out, uint64_t len, void* data) { in write_sparse_data_chunk()
419 uint64_t len = zero_len; in write_sparse_data_chunk() local
434 uint64_t len = zero_len; in write_sparse_data_chunk() local
450 static int write_sparse_fd_chunk(struct output_file* out, uint64_t len, int fd, int64_t offset) { in write_sparse_fd_chunk()
477 uint64_t len = zero_len; in write_sparse_fd_chunk() local
489 uint64_t len = zero_len; in write_sparse_fd_chunk() local
538 static int write_normal_data_chunk(struct output_file* out, uint64_t len, void* data) { in write_normal_data_chunk()
554 static int write_normal_fill_chunk(struct output_file* out, uint64_t len, uint32_t fill_val) { in write_normal_fill_chunk()
577 static int write_normal_fd_chunk(struct output_file* out, uint64_t len, int fd, int64_t offset) { in write_normal_fd_chunk()
594 static int write_normal_skip_chunk(struct output_file* out, uint64_t len) { in write_normal_skip_chunk()
619 static int output_file_init(struct output_file* out, int block_size, int64_t len, bool sparse, in output_file_init()
709 unsigned int block_size, int64_t len, int gz __unused, in output_file_open_callback()
734 struct output_file* output_file_open_fd(int fd, unsigned int block_size, int64_t len, int gz, in output_file_open_fd()
760 int write_data_chunk(struct output_file* out, uint64_t len, void* data) { in write_data_chunk()
765 int write_fill_chunk(struct output_file* out, uint64_t len, uint32_t fill_val) { in write_fill_chunk()
769 int write_fd_chunk(struct output_file* out, uint64_t len, int fd, int64_t offset) { in write_fd_chunk()
774 int write_file_chunk(struct output_file* out, uint64_t len, const char* file, int64_t offset) { in write_file_chunk()
789 int write_skip_chunk(struct output_file* out, uint64_t len) { in write_skip_chunk()