/external/pigweed/pw_transfer/ |
D | atomic_file_transfer_handler.cc | 63 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/ |
D | icing-mock-filesystem.h | 131 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),
|
D | icing-filesystem.cc | 456 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()
|
D | icing-filesystem.h | 180 virtual bool RenameFile(const char *old_name, const char *new_name) const;
|
/external/tensorflow/tensorflow/core/platform/ |
D | file_system.h | 331 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()
|
D | null_file_system.h | 95 Status RenameFile(const string& src, const string& target, in RenameFile() function
|
D | retrying_file_system.h | 125 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/ |
D | env.h | 168 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/ |
D | fault_injection_test.cc | 73 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()
|
D | repair.cc | 336 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()
|
D | filename.cc | 133 s = env->RenameFile(tmp, CurrentFileName(dbname)); in SetCurrentFile()
|
/external/icing/icing/file/ |
D | mock-filesystem.h | 191 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),
|
D | filesystem.cc | 605 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/ |
D | memenv_test.cc | 70 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/ |
D | posix_file_system.h | 66 Status RenameFile(const string& src, const string& target,
|
/external/tensorflow/tensorflow/tools/android/inference_interface/ |
D | asset_manager_filesystem.h | 72 Status RenameFile(const string& s, const string& t,
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_coverage_mapping_libcdep.cc | 116 if (!RenameFile(tmp_path.data(), path.data(), &err)) { in CovUpdateMapping()
|
/external/armnn/shim/sl/canonical/ |
D | CanonicalUtils.cpp | 584 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
|
D | CanonicalUtils.hpp | 82 void RenameFile(const std::string& existingName,
|
/external/tensorflow/tensorflow/tsl/platform/windows/ |
D | windows_file_system.h | 75 Status RenameFile(const string& src, const string& target,
|
/external/tensorflow/tensorflow/core/util/ |
D | memmapped_file_system.h | 87 Status RenameFile(const string& s, const string& t,
|
/external/rust/crates/libfuzzer-sys/libfuzzer/ |
D | FuzzerIO.h | 106 void RenameFile(const std::string &OldPath, const std::string &NewPath);
|
/external/tensorflow/tensorflow/c/experimental/filesystem/ |
D | modular_filesystem_test.cc | 805 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/ |
D | gcs_filesystem.h | 106 void RenameFile(const TF_Filesystem* filesystem, const char* src,
|
/external/android-nn-driver/ |
D | Utils.cpp | 706 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
|