Lines Matching defs:len
82 int64_t len; member
129 static int file_pad(struct output_file* out, int64_t len) { in file_pad()
141 static int file_write(struct output_file* out, void* data, size_t len) { in file_write()
200 static int gz_file_pad(struct output_file* out, int64_t len) { in gz_file_pad()
223 static int gz_file_write(struct output_file* out, void* data, size_t len) { in gz_file_write()
280 static int callback_file_write(struct output_file* out, void* data, size_t len) { in callback_file_write()
300 int read_all(int fd, void* buf, size_t len) { in read_all()
343 static int write_sparse_fill_chunk(struct output_file* out, uint64_t len, uint32_t fill_val) { in write_sparse_fill_chunk()
374 static int write_sparse_data_chunk(struct output_file* out, uint64_t len, void* data) { in write_sparse_data_chunk()
441 static int write_normal_data_chunk(struct output_file* out, uint64_t len, void* data) { in write_normal_data_chunk()
457 static int write_normal_fill_chunk(struct output_file* out, uint64_t len, uint32_t fill_val) { in write_normal_fill_chunk()
480 static int write_normal_skip_chunk(struct output_file* out, uint64_t len) { in write_normal_skip_chunk()
504 static int output_file_init(struct output_file* out, int block_size, int64_t len, bool sparse, in output_file_init()
592 unsigned int block_size, int64_t len, int gz __unused, in output_file_open_callback()
617 struct output_file* output_file_open_fd(int fd, unsigned int block_size, int64_t len, int gz, in output_file_open_fd()
643 int write_data_chunk(struct output_file* out, uint64_t len, void* data) { in write_data_chunk()
648 int write_fill_chunk(struct output_file* out, uint64_t len, uint32_t fill_val) { in write_fill_chunk()
652 int write_fd_chunk(struct output_file* out, uint64_t len, int fd, int64_t offset) { in write_fd_chunk()
660 int write_file_chunk(struct output_file* out, uint64_t len, const char* file, int64_t offset) { in write_file_chunk()
675 int write_skip_chunk(struct output_file* out, uint64_t len) { in write_skip_chunk()