Home
last modified time | relevance | path

Searched refs:CopyFileContents (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/posix/
Dcopy_file.h28 int CopyFileContents(int dst_fd, int src_fd, off_t size);
Dcopy_file_linux.cc26 int CopyFileContents(int dst_fd, int src_fd, off_t size) { in CopyFileContents() function
Dposix_filesystem_helper.cc49 if (CopyFileContents(dst_fd, src_fd, size) < 0) error_code = errno; in TransferFileContents()
Dcopy_file_portable.cc27 int CopyFileContents(int dst_fd, int src_fd, off_t size) { in CopyFileContents() function
/external/libchrome/base/files/
Dfile_util_posix.cc154 bool CopyFileContents(File* infile, File* outfile) { in CopyFileContents() function
311 if (!CopyFileContents(&infile, &outfile)) { in DoCopyDirectory()
1028 return CopyFileContents(&infile, &outfile); in CopyFile()
/external/cronet/base/files/
Dfile_util.h181 BASE_EXPORT bool CopyFileContents(File& infile, File& outfile);
Dfile_util.cc174 bool CopyFileContents(File& infile, File& outfile) { in CopyFileContents() function
Dfile_util_posix.cc266 if (!CopyFileContents(infile, outfile)) { in DoCopyDirectory()
1211 return CopyFileContents(infile, outfile); in CopyFile()
Dfile_util_unittest.cc4820 ASSERT_TRUE(base::CopyFileContents(from, to)); in TEST_F()