Home
last modified time | relevance | path

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

/tools/bpf/
Dbpf_jit_disasm.c269 int ofd; in main() local
309 ofd = open(ofile, O_WRONLY | O_CREAT | O_TRUNC, DEFFILEMODE); in main()
310 if (ofd < 0) { in main()
317 nr = write(ofd, pos, len); in main()
326 close(ofd); in main()
/tools/perf/util/
Dcopyfile.h14 int copyfile_offset(int ifd, loff_t off_in, int ofd, loff_t off_out, u64 size);
Dcopyfile.c45 int copyfile_offset(int ifd, loff_t off_in, int ofd, loff_t off_out, u64 size) in copyfile_offset() argument
58 ssize_t ret = pwrite(ofd, ptr + off_in, size, off_out); in copyfile_offset()