Lines Matching defs:crc
264 verbose_error(s->verbose, -EINVAL, "crc block at %lld",
277 static int sparse_file_read_sparse(struct sparse_file *s, int fd, bool crc)
296 if (crc) {
410 int sparse_file_read(struct sparse_file *s, int fd, bool sparse, bool crc)
412 if (crc && !sparse) {
417 return sparse_file_read_sparse(s, fd, crc);
423 struct sparse_file *sparse_file_import(int fd, bool verbose, bool crc)
470 ret = sparse_file_read(s, fd, true, crc);
479 struct sparse_file *sparse_file_import_auto(int fd, bool crc)
485 s = sparse_file_import(fd, true, crc);