Home
last modified time | relevance | path

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

123

/external/pigweed/pw_transfer/
Datomic_file_transfer_handler.cc63 pw::Status RenameFile(const std::string_view input_target, in RenameFile() function
120 const auto rename_status = RenameFile(tmp_file, path_); in FinalizeWrite()
/external/icing/icing/legacy/index/
Dicing-mock-filesystem.h131 ON_CALL(*this, RenameFile) in IcingMockFilesystem()
133 return real_icing_filesystem_.RenameFile(old_name, new_name); in IcingMockFilesystem()
220 MOCK_METHOD(bool, RenameFile, (const char *old_name, const char *new_name),
Dicing-filesystem.cc456 bool IcingFilesystem::RenameFile(const char *old_name, in RenameFile() function in icing::lib::IcingFilesystem
478 if (!RenameFile(one, tmp_cstr)) { in SwapFiles()
481 if (!RenameFile(two, one)) { in SwapFiles()
484 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
566 using FileSystem::RenameFile; \
673 tensorflow::Status RenameFile(const std::string& src, in RenameFile() function
676 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/leveldb/include/leveldb/
Denv.h168 virtual Status RenameFile(const std::string& src,
377 Status RenameFile(const std::string& s, const std::string& t) override { in RenameFile() function
378 return target_->RenameFile(s, t); in RenameFile()
/external/leveldb/db/
Dfault_injection_test.cc73 s = env->RenameFile(tmp_name, filename); in Truncate()
137 Status RenameFile(const std::string& s, const std::string& t) override;
310 Status FaultInjectionTestEnv::RenameFile(const std::string& s, in RenameFile() function in leveldb::FaultInjectionTestEnv
312 Status ret = EnvWrapper::RenameFile(s, t); in RenameFile()
Drepair.cc336 s = env_->RenameFile(copy, orig); in RepairTable()
398 status = env_->RenameFile(tmp, DescriptorFileName(dbname_, 1)); in WriteDescriptor()
423 Status s = env_->RenameFile(fname, new_file); in ArchiveFile()
Dfilename.cc133 s = env->RenameFile(tmp, CurrentFileName(dbname)); in SetCurrentFile()
/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.cc605 bool Filesystem::RenameFile(const char* old_name, const char* new_name) const { in RenameFile() function in icing::lib::Filesystem
626 if (!RenameFile(one, tmp_cstr)) { in SwapFiles()
629 if (!RenameFile(two, one)) { in SwapFiles()
632 if (!RenameFile(tmp_cstr, two)) { in SwapFiles()
/external/leveldb/helpers/memenv/
Dmemenv_test.cc70 ASSERT_TRUE(!env_->RenameFile("/dir/non_existent", "/dir/g").ok()); in TEST_F()
71 ASSERT_LEVELDB_OK(env_->RenameFile("/dir/f", "/dir/g")); in TEST_F()
/external/tensorflow/tensorflow/tsl/platform/default/
Dposix_file_system.h66 Status RenameFile(const string& src, const string& target,
/external/tensorflow/tensorflow/tools/android/inference_interface/
Dasset_manager_filesystem.h72 Status RenameFile(const string& s, const string& t,
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_coverage_mapping_libcdep.cc116 if (!RenameFile(tmp_path.data(), path.data(), &err)) { in CovUpdateMapping()
/external/armnn/shim/sl/canonical/
DCanonicalUtils.cpp584 RenameFile(existingSerializedFileName, std::string("_network.armnn"), dumpDir, networkId); in RenameExportedFiles()
585 RenameFile(existingDotFileName, std::string("_networkgraph.dot"), dumpDir, networkId); in RenameExportedFiles()
588 void RenameFile(const std::string& existingName, in RenameFile() function
DCanonicalUtils.hpp82 void RenameFile(const std::string& existingName,
/external/tensorflow/tensorflow/tsl/platform/windows/
Dwindows_file_system.h75 Status RenameFile(const string& src, const string& target,
/external/tensorflow/tensorflow/core/util/
Dmemmapped_file_system.h87 Status RenameFile(const string& s, const string& t,
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerIO.h106 void RenameFile(const std::string &OldPath, const std::string &NewPath);
/external/tensorflow/tensorflow/c/experimental/filesystem/
Dmodular_filesystem_test.cc805 status = env_->RenameFile(filepath, new_filepath); in TEST_P()
828 status = env_->RenameFile(filepath, new_filepath); in TEST_P()
841 Status status = env_->RenameFile(filepath, new_filepath); in TEST_P()
853 status = env_->RenameFile(filepath, new_filepath); in TEST_P()
863 status = env_->RenameFile(dirpath, new_filepath); in TEST_P()
878 status = env_->RenameFile(filepath, dirpath); in TEST_P()
891 status = env_->RenameFile(old_filepath, new_filepath); in TEST_P()
909 status = env_->RenameFile(old_filepath, new_filepath); in TEST_P()
929 status = env_->RenameFile(filepath, new_filepath); in TEST_P()
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/gcs/
Dgcs_filesystem.h106 void RenameFile(const TF_Filesystem* filesystem, const char* src,
/external/android-nn-driver/
DUtils.cpp706 RenameFile(existingSerializedFileName, std::string("_network.armnn"), dumpDir, networkId); in RenameExportedFiles()
707 RenameFile(existingDotFileName, std::string("_networkgraph.dot"), dumpDir, networkId); in RenameExportedFiles()
710 void RenameFile(const std::string& existingName, in RenameFile() function

123