Home
last modified time | relevance | path

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

/linux-4.4.14/tools/perf/util/
Dutil.c174 int fromfd, tofd; in copyfile_mode() local
205 fromfd = open(from, O_RDONLY); in copyfile_mode()
206 if (fromfd < 0) in copyfile_mode()
209 err = copyfile_offset(fromfd, 0, tofd, 0, st.st_size); in copyfile_mode()
211 close(fromfd); in copyfile_mode()
Dutil.h249 int copyfile_offset(int fromfd, loff_t from_ofs, int tofd, loff_t to_ofs, u64 size);
/linux-4.4.14/tools/testing/selftests/capabilities/
Dtest_execve.c146 static void copy_fromat_to(int fromfd, const char *fromname, const char *toname) in copy_fromat_to() argument
148 int from = openat(fromfd, fromname, O_RDONLY); in copy_fromat_to()