Home
last modified time | relevance | path

Searched refs:dst_fd (Results 1 – 3 of 3) sorted by relevance

/third_party/f2fs-tools/tools/f2fs_io/
Df2fs_io.c925 int dst_fd; in do_copy() local
958 dst_fd = xopen(argv[1], O_WRONLY | O_CREAT | O_TRUNC | open_flags, 0644); in do_copy()
975 full_write(dst_fd, src_addr, stbuf.st_size); in do_copy()
979 while ((ret = sendfile(dst_fd, src_fd, NULL, INT_MAX)) > 0) in do_copy()
987 full_write(dst_fd, buf, ret); in do_copy()
991 close(dst_fd); in do_copy()
Df2fs_io.h203 u32 dst_fd; /* destination fd */ member
/third_party/toybox/toys/other/
Dbzcat.c643 static char *bunzipStream(int src_fd, int dst_fd) in bunzipStream() argument
650 i = write_bunzip_data(bd,bd->bwdata, dst_fd, 0, 0); in bunzipStream()
656 flush_bunzip_outbuf(bd, dst_fd); in bunzipStream()