Home | History | Annotate | Download | only in debugfs

Lines Matching defs:e2_file

395 static errcode_t copy_file_range(ext2_filsys fs, int fd, ext2_file_t e2_file,
425 err = ext2fs_file_lseek(e2_file, off + bpos,
430 err = ext2fs_file_write(e2_file, ptr, blen,
449 ext2_file_t e2_file, char *buf, char *zerobuf)
469 err = copy_file_range(fs, fd, e2_file, data_blk, hole_blk, buf,
482 static errcode_t try_fiemap_copy(ext2_filsys fs, int fd, ext2_file_t e2_file,
519 err = copy_file_range(fs, fd, e2_file, ext->fe_logical,
544 ext2_file_t e2_file;
548 err = ext2fs_file_open(fs, ino, EXT2_FILE_WRITE, &e2_file);
561 err = try_lseek_copy(fs, fd, statbuf, e2_file, buf, zerobuf);
567 err = try_fiemap_copy(fs, fd, e2_file, buf, zerobuf);
572 err = copy_file_range(fs, fd, e2_file, 0, statbuf->st_size, buf,
577 close_err = ext2fs_file_close(e2_file);