Home
last modified time | relevance | path

Searched refs:dstUri (Results 1 - 21 of 21) sorted by relevance

/foundation/filemanagement/dfs_service/services/distributedfiledaemon/include/ipc/
H A Ddaemon.h71 const std::string &dstUri,
102 const std::string &dstUri,
107 const std::string &dstUri,
H A Ddistributed_file_daemon_manager.h41 const std::string &dstUri,
H A Di_daemon.h41 const std::string &dstUri,
/foundation/filemanagement/dfs_service/test/unittests/distributed_file_daemon/
H A Ddaemon_test.cpp187 const std::string dstUri = "file://docs/storage/Users/currentUser/Documents"; in HWTEST_F() local
197 EXPECT_EQ(daemon_->PrepareSession(srcUri, dstUri, srcDeviceId, listener, fileInfo), in HWTEST_F()
H A Ddaemon_manager_impl_test.cpp151 const std::string dstUri = "file://docs/storage/Users/currentUser/Documents"; in HWTEST_F() local
165 auto res = distributedDaemonManagerImpl_->PrepareSession(srcUri, dstUri, srcDeviceId, listener, fileInfo); in HWTEST_F()
H A Ddaemon_service_proxy_test.cpp115 const std::string dstUri = "file://docs/storage/Users/currentUser/Documents"; in HWTEST_F() local
122 int ret = proxy_->PrepareSession(srcUri, dstUri, srcDeviceId, listener, fileInfo); in HWTEST_F()
H A Ddaemon_stub_test.cpp80 const std::string &dstUri,
H A Ddaemon_stub_sup_test.cpp94 const std::string &dstUri,
/foundation/filemanagement/dfs_service/frameworks/native/distributed_file_inner/src/
H A Ddistributed_file_daemon_manager_impl.cpp77 const std::string &dstUri, in PrepareSession()
87 return distributedFileDaemonProxy->PrepareSession(srcUri, dstUri, srcDeviceId, listener, info); in PrepareSession()
76 PrepareSession(const std::string &srcUri, const std::string &dstUri, const std::string &srcDeviceId, const sptr<IRemoteObject> &listener, HmdfsInfo &info) PrepareSession() argument
H A Ddistributed_file_daemon_proxy.cpp268 const std::string &dstUri, in PrepareSession()
284 if (!data.WriteString(dstUri)) { in PrepareSession()
285 LOGE("Failed to send dstUri"); in PrepareSession()
267 PrepareSession(const std::string &srcUri, const std::string &dstUri, const std::string &srcDeviceId, const sptr<IRemoteObject> &listener, HmdfsInfo &info) PrepareSession() argument
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/ipc/
H A Ddaemon.cpp387 const std::string &dstUri, in PrepareSession()
409 auto ret = GetRealPath(srcUri, dstUri, physicalPath, info, daemon); in PrepareSession()
452 const std::string &dstUri, in GetRealPath()
483 ret = SandboxHelper::GetPhysicalPath(dstUri, std::to_string(hapTokenInfo.userID), physicalPath); in GetRealPath()
492 ret = CheckCopyRule(physicalPath, dstUri, hapTokenInfo, isSrcFile, info); in GetRealPath()
504 const std::string &dstUri, in CheckCopyRule()
535 Uri uri(dstUri); in CheckCopyRule()
539 auto bundleName = SoftBusSessionListener::GetBundleName(dstUri); in CheckCopyRule()
386 PrepareSession(const std::string &srcUri, const std::string &dstUri, const std::string &srcDeviceId, const sptr<IRemoteObject> &listener, HmdfsInfo &info) PrepareSession() argument
451 GetRealPath(const std::string &srcUri, const std::string &dstUri, std::string &physicalPath, HmdfsInfo &info, const sptr<IDaemon> &daemon) GetRealPath() argument
503 CheckCopyRule(std::string &physicalPath, const std::string &dstUri, HapTokenInfo &hapTokenInfo, const bool &isSrcFile, HmdfsInfo &info) CheckCopyRule() argument
H A Ddaemon_stub.cpp214 std::string dstUri; in HandlePrepareSession() local
215 if (!data.ReadString(dstUri)) { in HandlePrepareSession()
216 LOGE("read dstUri failed"); in HandlePrepareSession()
238 int32_t res = PrepareSession(srcUri, dstUri, srcDeviceId, listener, info); in HandlePrepareSession()
/foundation/filemanagement/dfs_service/test/unittests/distributed_file_inner/include/
H A Di_daemon_mock.h40 MOCK_METHOD5(PrepareSession, int32_t(const std::string &srcUri, const std::string &dstUri,
/foundation/filemanagement/dfs_service/test/unittests/distributed_file_daemon/include/
H A Di_daemon_mock.h64 const std::string &dstUri, in PrepareSession()
63 PrepareSession(const std::string &srcUri, const std::string &dstUri, const std::string &srcDeviceId, const sptr<IRemoteObject> &listener, HmdfsInfo &fileInfo) PrepareSession() argument
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/include/network/softbus/
H A Dsoftbus_handler.h47 const std::string &dstUri);
/foundation/filemanagement/dfs_service/frameworks/native/distributed_file_inner/include/
H A Ddistributed_file_daemon_manager_impl.h40 const std::string &dstUri,
H A Ddistributed_file_daemon_proxy.h44 const std::string &dstUri,
/foundation/filemanagement/user_file_service/interfaces/inner_api/file_access/src/
H A Djs_file_access_ext_ability.cpp507 napi_value dstUri = nullptr; in Move()
508 napi_create_string_utf8(env, targetParent.ToString().c_str(), targetParent.ToString().length(), &dstUri); in Move()
509 if (srcUri == nullptr || dstUri == nullptr) { in Move()
514 argv[ARGC_ONE] = dstUri; in Move()
1928 napi_value dstUri = nullptr; in MoveFile()
1929 napi_create_string_utf8(env, targetParent.ToString().c_str(), targetParent.ToString().length(), &dstUri); in MoveFile()
1932 if (srcUri == nullptr || dstUri == nullptr || name == nullptr) { in MoveFile()
1937 argv[ARGC_ONE] = dstUri; in MoveFile()
/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_file/class_file/
H A Dfile_n_exporter.cpp1104 unique_ptr<char[]> srcUri, dstUri; in Copy() local
1106 tie(succ, dstUri, ignore) = NVal(env, funcArg[NARG_POS::FIRST]).GetProp("dstUri").ToUTF8StringPath(); in Copy()
1108 string dstPath = ((dstUri == nullptr) ? "" : (dstUri.get())); in Copy()
1140 unique_ptr<char[]> srcUri, dstUri; in Move() local
1142 tie(succ, dstUri, ignore) = NVal(env, funcArg[NARG_POS::FIRST]).GetProp("dstUri").ToUTF8StringPath(); in Move()
1145 string dstPath = ((dstUri == nullptr) ? "" : (dstUri in Move()
[all...]
/foundation/filemanagement/dfs_service/test/fuzztest/daemonstub_fuzzer/
H A Ddaemonstub_fuzzer.cpp78 const std::string &dstUri,
/foundation/multimedia/player_framework/frameworks/native/system_sound_manager/unittest/sound_manager_test/src/
H A Dsystem_sound_manager_unit_test.cpp201 std::string srcUri, dstUri; in HWTEST() local
209 dstUri = systemSoundManager_->GetAlarmToneUri(context_); in HWTEST()
210 EXPECT_EQ(srcUri, dstUri); in HWTEST()

Completed in 15 milliseconds