• Home
  • Raw
  • Download

Lines Matching defs:len

88   int64_t len;  member
135 static int file_pad(struct output_file* out, int64_t len) { in file_pad()
147 static int file_write(struct output_file* out, void* data, size_t len) { in file_write()
206 static int gz_file_pad(struct output_file* out, int64_t len) { in gz_file_pad()
229 static int gz_file_write(struct output_file* out, void* data, size_t len) { in gz_file_write()
286 static int callback_file_write(struct output_file* out, void* data, size_t len) { in callback_file_write()
306 int read_all(int fd, void* buf, size_t len) { in read_all()
349 static int write_sparse_fill_chunk(struct output_file* out, unsigned int len, uint32_t fill_val) { in write_sparse_fill_chunk()
379 static int write_sparse_data_chunk(struct output_file* out, unsigned int len, void* data) { in write_sparse_data_chunk()
446 static int write_normal_data_chunk(struct output_file* out, unsigned int len, void* data) { in write_normal_data_chunk()
462 static int write_normal_fill_chunk(struct output_file* out, unsigned int len, uint32_t fill_val) { in write_normal_fill_chunk()
485 static int write_normal_skip_chunk(struct output_file* out, int64_t len) { in write_normal_skip_chunk()
505 static int output_file_init(struct output_file* out, int block_size, int64_t len, bool sparse, in output_file_init()
593 unsigned int block_size, int64_t len, int gz __unused, in output_file_open_callback()
618 struct output_file* output_file_open_fd(int fd, unsigned int block_size, int64_t len, int gz, in output_file_open_fd()
644 int write_data_chunk(struct output_file* out, unsigned int len, void* data) { in write_data_chunk()
649 int write_fill_chunk(struct output_file* out, unsigned int len, uint32_t fill_val) { in write_fill_chunk()
653 int write_fd_chunk(struct output_file* out, unsigned int len, int fd, int64_t offset) { in write_fd_chunk()
703 int write_file_chunk(struct output_file* out, unsigned int len, const char* file, int64_t offset) { in write_file_chunk()
718 int write_skip_chunk(struct output_file* out, int64_t len) { in write_skip_chunk()