Home
last modified time | relevance | path

Searched refs:target_fs (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/platform/
Denv.cc276 FileSystem* target_fs; in RenameFile() local
278 TF_RETURN_IF_ERROR(GetFileSystemForFile(target, &target_fs)); in RenameFile()
279 if (src_fs != target_fs) { in RenameFile()
288 FileSystem* target_fs; in CopyFile() local
290 TF_RETURN_IF_ERROR(GetFileSystemForFile(target, &target_fs)); in CopyFile()
291 if (src_fs == target_fs) { in CopyFile()
294 return FileSystemCopyFile(src_fs, src, target_fs, target); in CopyFile()
438 FileSystem* target_fs, const string& target) { in FileSystemCopyFile() argument
443 TF_RETURN_IF_ERROR(target_fs->NewWritableFile(target, &target_file)); in FileSystemCopyFile()
Denv.h431 FileSystem* target_fs, const string& target);