/foundation/filemanagement/dfs_service/test/unittests/cloudsync_api/cloudsync_impl/ |
H A D | cloud_sync_common_test.cpp | 198 CleanOptions cleanOptions; in HWTEST_F() local 201 auto res = cleanOptions.Marshalling(parcel); in HWTEST_F() 206 cleanOptions.appActionsData.insert({strActionsData, intActionsData}); in HWTEST_F() 207 res = cleanOptions.Marshalling(parcel); in HWTEST_F() 226 CleanOptions cleanOptions; in HWTEST_F() local 230 cleanOptions.appActionsData.insert({strActionsData, intActionsData}); in HWTEST_F() 231 auto res = cleanOptions.Marshalling(parcel); in HWTEST_F() 250 CleanOptions cleanOptions; in HWTEST_F() local 253 auto res = cleanOptions.Marshalling(parcel); in HWTEST_F() 258 cleanOptions in HWTEST_F() 320 auto cleanOptions = make_shared<CleanOptions>(); HWTEST_F() local 416 CleanOptions cleanOptions; HWTEST_F() local 438 CleanOptions cleanOptions; HWTEST_F() local 460 CleanOptions cleanOptions; HWTEST_F() local [all...] |
H A D | cloud_sync_manager_impl_unnomal_test.cpp | 288 CleanOptions cleanOptions; in HWTEST_F() local 289 auto res = managePtr_->Clean(accoutId, cleanOptions); in HWTEST_F()
|
H A D | cloud_sync_manager_impl_test.cpp | 522 CleanOptions cleanOptions; in HWTEST_F() local 523 auto res = CloudSyncManagerImpl::GetInstance().Clean(accoutId, cleanOptions); in HWTEST_F()
|
H A D | cloud_sync_service_proxy_test.cpp | 382 CleanOptions cleanOptions; in HWTEST_F() local 385 int result = proxy_->Clean(accoutId, cleanOptions); in HWTEST_F() 400 CleanOptions cleanOptions; in HWTEST_F() local 403 int result = proxy_->Clean(accoutId, cleanOptions); in HWTEST_F()
|
/foundation/filemanagement/dfs_service/interfaces/kits/js/cloudsyncmanager/ |
H A D | cloud_sync_manager_n_exporter.cpp | 329 bool ParseAppActions(napi_env env, napi_value object, CleanOptions &cleanOptions) in ParseAppActions() argument 360 cleanOptions.appActionsData.emplace(string(bundleNameStr.get()).c_str(), appActionsVal); in ParseAppActions() 379 CleanOptions cleanOptions {}; in Clean() 380 if (!ParseAppActions(env, funcArg[(int)NARG_POS::SECOND], cleanOptions)) { in Clean() 386 auto cbExec = [accoutIdStr, cleanOptions]() -> NError { in Clean() 387 int32_t result = CloudSyncManager::GetInstance().Clean(accoutIdStr, cleanOptions); in Clean()
|
/foundation/filemanagement/dfs_service/test/fuzztest/cloudsyncmanager_fuzzer/ |
H A D | cloudsyncmanager_fuzzer.cpp | 180 CleanOptions cleanOptions; in CleanFuzzTest() local 181 cleanOptions.appActionsData.insert({itemStr, itemInt}); in CleanFuzzTest() 182 CloudSyncManager::GetInstance().Clean(accoutId, cleanOptions); in CleanFuzzTest()
|
/foundation/filemanagement/dfs_service/test/mock/ipc/ |
H A D | cloud_sync_service_proxy_mock.cpp | 50 int32_t CloudSyncServiceProxy::Clean(const std::string &accountId, const CleanOptions &cleanOptions) in Clean() argument
|
/foundation/filemanagement/dfs_service/interfaces/inner_api/native/cloudsync_kit_inner/ |
H A D | i_cloud_sync_service.h | 38 virtual int32_t Clean(const std::string &accountId, const CleanOptions &cleanOptions) = 0;
|
H A D | cloud_sync_manager.h | 102 * @param cleanOptions 说明云文件如何处理的方式 105 virtual int32_t Clean(const std::string &accountId, const CleanOptions &cleanOptions) = 0;
|
/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner/include/ |
H A D | cloud_sync_service_proxy.h | 39 int32_t Clean(const std::string &accountId, const CleanOptions &cleanOptions) override;
|
H A D | cloud_sync_manager_impl.h | 43 int32_t Clean(const std::string &accountId, const CleanOptions &cleanOptions) override;
|
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_api/cloudsync_impl/include/ |
H A D | i_cloud_sync_service_mock.h | 79 int32_t Clean(const std::string &accountId, const CleanOptions &cleanOptions) override
|
/foundation/filemanagement/dfs_service/services/cloudsyncservice/src/ipc/ |
H A D | cloud_sync_service.cpp | 522 int32_t CloudSyncService::Clean(const std::string &accountId, const CleanOptions &cleanOptions) in Clean() argument 524 for (auto &iter : cleanOptions.appActionsData) { in Clean() 532 for (auto iter = cleanOptions.appActionsData.begin(); iter != cleanOptions.appActionsData.end(); ++iter) { in Clean()
|
/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner/src/ |
H A D | cloud_sync_manager_impl.cpp | 376 int32_t CloudSyncManagerImpl::Clean(const std::string &accountId, const CleanOptions &cleanOptions) in Clean() argument 386 return CloudSyncServiceProxy->Clean(accountId, cleanOptions); in Clean()
|
H A D | cloud_sync_service_proxy.cpp | 366 int32_t CloudSyncServiceProxy::Clean(const std::string &accountId, const CleanOptions &cleanOptions) in Clean() argument 383 if (!data.WriteParcelable(&cleanOptions)) { in Clean() 384 LOGE("failed to write cleanOptions"); in Clean()
|
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/ipc/ |
H A D | cloud_sync_service_test.cpp | 344 CleanOptions cleanOptions; in HWTEST_F() local 345 int ret = g_servicePtr_->Clean(accountId, cleanOptions); in HWTEST_F()
|
H A D | cloud_sync_service_stub_test.cpp | 41 MOCK_METHOD2(Clean, int32_t(const std::string &accountId, const CleanOptions &cleanOptions));
|
/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner_lite/src/ |
H A D | cloud_sync_service_proxy_lite.cpp | 179 int32_t CloudSyncServiceProxy::Clean(const std::string &accountId, const CleanOptions &cleanOptions)
in Clean() argument
|
/foundation/filemanagement/dfs_service/services/cloudsyncservice/include/ipc/ |
H A D | cloud_sync_service.h | 49 int32_t Clean(const std::string &accountId, const CleanOptions &cleanOptions) override;
|