Searched refs:CopyFileContents (Results 1 – 9 of 9) sorted by relevance
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/posix/ |
D | copy_file.h | 28 int CopyFileContents(int dst_fd, int src_fd, off_t size);
|
D | copy_file_linux.cc | 26 int CopyFileContents(int dst_fd, int src_fd, off_t size) { in CopyFileContents() function
|
D | posix_filesystem_helper.cc | 49 if (CopyFileContents(dst_fd, src_fd, size) < 0) error_code = errno; in TransferFileContents()
|
D | copy_file_portable.cc | 27 int CopyFileContents(int dst_fd, int src_fd, off_t size) { in CopyFileContents() function
|
/external/libchrome/base/files/ |
D | file_util_posix.cc | 154 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/ |
D | file_util.h | 181 BASE_EXPORT bool CopyFileContents(File& infile, File& outfile);
|
D | file_util.cc | 174 bool CopyFileContents(File& infile, File& outfile) { in CopyFileContents() function
|
D | file_util_posix.cc | 266 if (!CopyFileContents(infile, outfile)) { in DoCopyDirectory() 1211 return CopyFileContents(infile, outfile); in CopyFile()
|
D | file_util_unittest.cc | 4820 ASSERT_TRUE(base::CopyFileContents(from, to)); in TEST_F()
|