/foundation/filemanagement/dfs_service/interfaces/inner_api/native/cloudsync_kit_inner/ |
H A D | i_cloud_sync_service.h | 46 virtual int32_t StopDownloadFile(const std::string &path, bool needClean = false) = 0;
|
H A D | cloud_sync_manager.h | 109 virtual int32_t StopDownloadFile(const std::string &path, bool needClean = false) = 0;
|
/foundation/filemanagement/dfs_service/frameworks/native/cloud_file_kit_inner/src/ |
H A D | data_sync_manager.cpp | 75 int32_t DataSyncManager::StopDownloadFile(const BundleNameUserInfo &bundleNameUserInfo, in StopDownloadFile() function in OHOS::FileManagement::CloudFile::DataSyncManager
|
/foundation/filemanagement/dfs_service/interfaces/inner_api/native/cloud_file_kit_inner/ |
H A D | data_sync_manager.h | 50 virtual int32_t StopDownloadFile(const BundleNameUserInfo &bundleNameUserInfo,
|
/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner/include/ |
H A D | cloud_sync_service_proxy.h | 47 int32_t StopDownloadFile(const std::string &uri, bool needClean = false) override;
|
H A D | cloud_sync_manager_impl.h | 51 int32_t StopDownloadFile(const std::string &uri, bool needClean = false) override;
|
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_api/cloudsync_impl/ |
H A D | cloud_sync_manager_impl_unnomal_test.cpp | 199 * @tc.desc: Verify the StopDownloadFile function. 208 auto res = managePtr_->StopDownloadFile(uri); in HWTEST_F()
|
H A D | cloud_sync_manager_impl_test.cpp | 393 * @tc.desc: Verify the StopDownloadFile function. 402 auto res = CloudSyncManagerImpl::GetInstance().StopDownloadFile(uri); in HWTEST_F()
|
H A D | cloud_sync_service_proxy_test.cpp | 588 * @tc.desc: Verify the StopDownloadFile function. 594 GTEST_LOG_(INFO) << "StopDownloadFile Start"; in HWTEST_F() 598 int result = proxy_->StopDownloadFile(uri); in HWTEST_F() 600 GTEST_LOG_(INFO) << "StopDownloadFile End"; in HWTEST_F() 605 * @tc.desc: Verify the StopDownloadFile function. 611 GTEST_LOG_(INFO) << "StopDownloadFile Start"; in HWTEST_F() 615 int result = proxy_->StopDownloadFile(uri); in HWTEST_F() 617 GTEST_LOG_(INFO) << "StopDownloadFile End"; in HWTEST_F()
|
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_api/cloudsync_impl/include/ |
H A D | i_cloud_sync_service_mock.h | 108 int32_t StopDownloadFile(const std::string &path, bool needClean = false) in StopDownloadFile() function in OHOS::FileManagement::CloudSync::CloudSyncServiceMock
|
/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner/src/ |
H A D | cloud_sync_manager_impl.cpp | 268 int32_t CloudSyncManagerImpl::StopDownloadFile(const std::string &uri, bool needClean) in StopDownloadFile() function in OHOS::FileManagement::CloudSync::CloudSyncManagerImpl 270 LOGI("StopDownloadFile start"); in StopDownloadFile() 277 int32_t ret = CloudSyncServiceProxy->StopDownloadFile(uri, needClean); in StopDownloadFile() 278 LOGI("StopDownloadFile ret %{public}d", ret); in StopDownloadFile()
|
H A D | cloud_sync_service_proxy.cpp | 660 int32_t CloudSyncServiceProxy::StopDownloadFile(const std::string &uri, bool needClean) in StopDownloadFile() function in OHOS::FileManagement::CloudSync::CloudSyncServiceProxy 662 LOGI("StopDownloadFile Start"); in StopDownloadFile() 679 LOGI("StopDownloadFile Start, uri: %{public}s, path: %{public}s", in StopDownloadFile() 705 LOGI("StopDownloadFile Success"); in StopDownloadFile()
|
/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner_lite/src/ |
H A D | cloud_sync_service_proxy_lite.cpp | 216 int32_t CloudSyncServiceProxy::StopDownloadFile(const std::string &uri, bool needClean)
in StopDownloadFile() function in OHOS::FileManagement::CloudSync::CloudSyncServiceProxy
|
/foundation/filemanagement/dfs_service/services/cloudsyncservice/include/ipc/ |
H A D | cloud_sync_service.h | 57 int32_t StopDownloadFile(const std::string &path, bool needClean = false) override;
|
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/ipc/ |
H A D | cloud_sync_service_stub_test.cpp | 48 MOCK_METHOD2(StopDownloadFile, int32_t(const std::string &path, bool needClean)); 459 EXPECT_CALL(service, StopDownloadFile(_, _)).WillOnce(Return(E_OK)); in HWTEST_F()
|
H A D | cloud_sync_service_test.cpp | 356 * @tc.desc:Verify the StopDownloadFile function. 362 GTEST_LOG_(INFO) << "StopDownloadFile start"; in HWTEST_F() 366 int ret = g_servicePtr_->StopDownloadFile(path, needClean); in HWTEST_F() 370 GTEST_LOG_(INFO) << "StopDownloadFile FAILED"; in HWTEST_F() 372 GTEST_LOG_(INFO) << "StopDownloadFile end"; in HWTEST_F()
|
/foundation/filemanagement/dfs_service/test/fuzztest/cloudsyncmanager_fuzzer/ |
H A D | cloudsyncmanager_fuzzer.cpp | 141 CloudSyncManager::GetInstance().StopDownloadFile(uri, needClean); in StopDownloadFileFuzzTest()
|
/foundation/filemanagement/dfs_service/services/cloudsyncservice/src/ipc/ |
H A D | cloud_sync_service.cpp | 565 int32_t CloudSyncService::StopDownloadFile(const std::string &path, bool needClean) in StopDownloadFile() function in OHOS::FileManagement::CloudSync::CloudSyncService 572 LOGI("start StopDownloadFile"); in StopDownloadFile() 573 return dataSyncManager_->StopDownloadFile(bundleNameUserInfo, path, needClean); in StopDownloadFile()
|
H A D | cloud_sync_service_stub.cpp | 412 int32_t res = StopDownloadFile(path, needClean); in HandleStopDownloadFile()
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/ |
H A D | background_cloud_file_processor.cpp | 234 int32_t ret = CloudSyncManager::GetInstance().StopDownloadFile(path); in StopDownloadFiles()
|
/foundation/filemanagement/dfs_service/interfaces/kits/js/cloudfilesync/ |
H A D | cloud_file_napi.cpp | 282 int32_t ret = CloudSyncManager::GetInstance().StopDownloadFile(uri, needClean); in Stop()
|
H A D | cloud_file_cache_napi.cpp | 207 int32_t ret = CloudSyncManager::GetInstance().StopDownloadFile(uri, needClean); in StopFileCache()
|