Home
last modified time | relevance | path

Searched refs:NotifyEventChange (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/filemanagement/dfs_service/interfaces/kits/js/cloudsyncmanager/
H A Dcloud_sync_manager_n_exporter.h25 napi_value NotifyEventChange(napi_env env, napi_callback_info info);
H A Dcloud_sync_manager_n_exporter.cpp138 napi_value NotifyEventChange(napi_env env, NFuncArg &funcArg) in NotifyEventChange() function
173 …int32_t result = CloudSyncManager::GetInstance().NotifyEventChange(userId, eventIdStr, extraDataSt… in NotifyEventChange()
202 return NotifyEventChange(env, funcArg); in NotifyDataChange()
/ohos5.0/foundation/filemanagement/dfs_service/interfaces/inner_api/native/cloudsync_kit_inner/
H A Dcloud_sync_manager.h95 …virtual int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &e…
H A Di_cloud_sync_service.h40 …virtual int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &e…
/ohos5.0/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner/include/
H A Dcloud_sync_manager_impl.h45 …int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData…
H A Dcloud_sync_service_proxy.h41 …int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData…
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/cloudsync_api/cloudsync_impl/include/
H A Di_cloud_sync_service_mock.h88 …int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData… in NotifyEventChange() function
/ohos5.0/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner/src/
H A Dcloud_sync_manager_impl.cpp199 int32_t CloudSyncManagerImpl::NotifyEventChange( in NotifyEventChange() function in OHOS::FileManagement::CloudSync::CloudSyncManagerImpl
210 int32_t ret = CloudSyncServiceProxy->NotifyEventChange(userId, eventId, extraData); in NotifyEventChange()
H A Dcloud_sync_service_proxy.cpp509 int32_t CloudSyncServiceProxy::NotifyEventChange( in NotifyEventChange() function in OHOS::FileManagement::CloudSync::CloudSyncServiceProxy
/ohos5.0/foundation/filemanagement/dfs_service/services/cloudsyncservice/include/ipc/
H A Dcloud_sync_service.h51 …int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData…
/ohos5.0/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner_lite/src/
H A Dcloud_sync_service_proxy_lite.cpp200 int32_t CloudSyncServiceProxy::NotifyEventChange( in NotifyEventChange() function in OHOS::FileManagement::CloudSync::CloudSyncServiceProxy
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/ipc/
H A Dcloud_sync_service_stub_test.cpp44 …MOCK_METHOD3(NotifyEventChange, int32_t(int32_t userId, const std::string &eventId, const std::str…
377 EXPECT_CALL(service, NotifyEventChange(_, _, _)).WillOnce(Return(E_OK));
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/cloudsync_api/cloudsync_impl/
H A Dcloud_sync_manager_impl_test.cpp342 … auto res = CloudSyncManagerImpl::GetInstance().NotifyEventChange(userId, eventId, extraData);
H A Dcloud_sync_service_proxy_test.cpp528 int result = proxy_->NotifyEventChange(userId, eventId, extraData);
547 int result = proxy_->NotifyEventChange(userId, eventId, extraData);
/ohos5.0/foundation/filemanagement/dfs_service/services/cloudsyncservice/src/ipc/
H A Dcloud_sync_service.cpp470 int32_t CloudSyncService::NotifyEventChange(int32_t userId, const std::string &eventId, const std::… in NotifyEventChange() function in OHOS::FileManagement::CloudSync::CloudSyncService
H A Dcloud_sync_service_stub.cpp304 int32_t res = NotifyEventChange(userId, eventIdStr, extraDataStr); in HandleNotifyEventChange()