Home
last modified time | relevance | path

Searched refs:RenameFile (Results 1 – 25 of 73) sorted by relevance

123

/external/icing/icing/legacy/index/
Dicing-mock-filesystem.h132 ON_CALL(*this, RenameFile) in IcingMockFilesystem()
134 return real_icing_filesystem_.RenameFile(old_name, new_name); in IcingMockFilesystem()
221 MOCK_METHOD(bool, RenameFile, (const char *old_name, const char *new_name),
Dicing-filesystem.cc478 bool IcingFilesystem::RenameFile(const char *old_name, in RenameFile() function in icing::lib::IcingFilesystem
502 if (!RenameFile(one, tmp_cstr)) { in SwapFiles()
505 if (!RenameFile(two, one)) { in SwapFiles()
508 if (!RenameFile(tmp_cstr, two)) { in SwapFiles()
Dicing-filesystem.h180 virtual bool RenameFile(const char *old_name, const char *new_name) const;
/external/tensorflow/tensorflow/core/platform/
Dfile_system.h331 virtual tensorflow::Status RenameFile(const std::string& src, in RenameFile() function
333 return RenameFile(src, target, nullptr); in RenameFile()
336 virtual tensorflow::Status RenameFile(const std::string& src, in RenameFile() function
543 using FileSystem::RenameFile; \
650 tensorflow::Status RenameFile(const std::string& src, in RenameFile() function
653 return fs_->RenameFile(src, target, (token ? token : token_)); in RenameFile()
Dnull_file_system.h95 Status RenameFile(const string& src, const string& target, in RenameFile() function
Dretrying_file_system.h125 Status RenameFile(const string& src, const string& target, in RenameFile() function
129 return base_file_system_->RenameFile(src, target, token); in RenameFile()
/external/icing/icing/file/
Dmock-filesystem.h191 ON_CALL(*this, RenameFile) in MockFilesystem()
193 return real_filesystem_.RenameFile(old_name, new_name); in MockFilesystem()
316 MOCK_METHOD(bool, RenameFile, (const char* old_name, const char* new_name),
Dfilesystem.cc619 bool Filesystem::RenameFile(const char* old_name, const char* new_name) const { in RenameFile() function in icing::lib::Filesystem
642 if (!RenameFile(one, tmp_cstr)) { in SwapFiles()
645 if (!RenameFile(two, one)) { in SwapFiles()
648 if (!RenameFile(tmp_cstr, two)) { in SwapFiles()
Dfilesystem.h198 virtual bool RenameFile(const char* old_name, const char* new_name) const;
/external/tensorflow/tensorflow/core/platform/s3/
Ds3_file_system_test.cc290 TEST_F(S3FileSystemTest, RenameFile) { in TEST_F() argument
294 TF_EXPECT_OK(s3fs.RenameFile(fname1, fname2)); in TEST_F()
308 TF_EXPECT_OK(s3fs.RenameFile(fname1, fname2)); in TEST_F()
/external/tensorflow/tensorflow/core/platform/hadoop/
Dhadoop_file_system_test.cc169 TEST_F(HadoopFileSystemTest, RenameFile) { in TEST_F() argument
173 TF_EXPECT_OK(hdfs.RenameFile(fname1, fname2)); in TEST_F()
187 TF_EXPECT_OK(hdfs.RenameFile(fname1, fname2)); in TEST_F()
Dhadoop_file_system.h71 Status RenameFile(const string& src, const string& target,
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_coverage_mapping_libcdep.cc116 if (!RenameFile(tmp_path.data(), path.data(), &err)) { in CovUpdateMapping()
/external/tensorflow/tensorflow/tools/android/inference_interface/
Dasset_manager_filesystem.h72 Status RenameFile(const string& s, const string& t,
/external/tensorflow/tensorflow/core/platform/default/
Dposix_file_system.h66 Status RenameFile(const string& src, const string& target,
/external/tensorflow/tensorflow/core/platform/windows/
Dwindows_file_system.h75 Status RenameFile(const string& src, const string& target,
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/hadoop/
Dhadoop_filesystem.h81 void RenameFile(const TF_Filesystem* filesystem, const char* src,
Dhadoop_filesystem_test.cc260 TEST_F(HadoopFileSystemTest, RenameFile) { in TEST_F() argument
266 tf_hadoop_filesystem::RenameFile(filesystem_, src.c_str(), dst.c_str(), in TEST_F()
285 tf_hadoop_filesystem::RenameFile(filesystem_, src.c_str(), dst.c_str(), in TEST_F()
/external/llvm-project/compiler-rt/lib/fuzzer/
DFuzzerIO.h101 void RenameFile(const std::string &OldPath, const std::string &NewPath);
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerIO.h101 void RenameFile(const std::string &OldPath, const std::string &NewPath);
/external/tensorflow/tensorflow/core/util/
Dmemmapped_file_system.h87 Status RenameFile(const string& s, const string& t,
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/s3/
Ds3_filesystem.h97 void RenameFile(const TF_Filesystem* filesystem, const char* src,
Ds3_filesystem_test.cc455 TEST_F(S3FilesystemTest, RenameFile) { in TEST_F() argument
461 tf_s3_filesystem::RenameFile(filesystem_, src.c_str(), dst.c_str(), status_); in TEST_F()
479 tf_s3_filesystem::RenameFile(filesystem_, src.c_str(), dst.c_str(), status_); in TEST_F()
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/gcs/
Dgcs_filesystem.h106 void RenameFile(const TF_Filesystem* filesystem, const char* src,
/external/tensorflow/tensorflow/c/experimental/filesystem/
Dmodular_filesystem_test.cc807 status = env_->RenameFile(filepath, new_filepath); in TEST_P()
830 status = env_->RenameFile(filepath, new_filepath); in TEST_P()
843 Status status = env_->RenameFile(filepath, new_filepath); in TEST_P()
855 status = env_->RenameFile(filepath, new_filepath); in TEST_P()
865 status = env_->RenameFile(dirpath, new_filepath); in TEST_P()
880 status = env_->RenameFile(filepath, dirpath); in TEST_P()
893 status = env_->RenameFile(old_filepath, new_filepath); in TEST_P()
911 status = env_->RenameFile(old_filepath, new_filepath); in TEST_P()
931 status = env_->RenameFile(filepath, new_filepath); in TEST_P()

123