Home
last modified time | relevance | path

Searched refs:NotifyEventChange (Results 1 - 24 of 24) sorted by relevance

/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
140 LOGI("NotifyEventChange entrance"); in NotifyEventChange()
173 int32_t result = CloudSyncManager::GetInstance().NotifyEventChange(userId, eventIdStr, extraDataStr); in NotifyEventChange()
187 std::string procedureName = "NotifyEventChange"; in NotifyEventChange()
202 return NotifyEventChange(env, funcArg); in NotifyDataChange()
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/rtsp/include/
H A Drtsp_listener.h40 virtual void NotifyEventChange(int moduleId, int event, const std::string &param) = 0;
/foundation/CastEngine/castengine_cast_plus_stream/src/rtsp/include/
H A Drtsp_listener.h40 virtual void NotifyEventChange(int moduleId, int event, const std::string &param) = 0;
/foundation/filemanagement/dfs_service/interfaces/inner_api/native/cloudsync_kit_inner/
H A Di_cloud_sync_service.h40 virtual int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData) = 0;
H A Dcloud_sync_manager.h95 virtual int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData) = 0;
/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner/include/
H A Dcloud_sync_service_proxy.h41 int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData) override;
H A Dcloud_sync_manager_impl.h45 int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData) override;
/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) override
/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
512 LOGI("NotifyEventChange"); in NotifyEventChange()
548 LOGI("NotifyEventChange Success"); in NotifyEventChange()
/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner_lite/src/
H A Dcloud_sync_service_proxy_lite.cpp199 int32_t CloudSyncServiceProxy::NotifyEventChange( in NotifyEventChange() function in OHOS::FileManagement::CloudSync::CloudSyncServiceProxy
/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) override;
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/ipc/
H A Dcloud_sync_service_stub_test.cpp43 MOCK_METHOD3(NotifyEventChange, int32_t(int32_t userId, const std::string &eventId, const std::string &extraData));
352 EXPECT_CALL(service, NotifyEventChange(_, _, _)).WillOnce(Return(E_OK)); in HWTEST_F()
/foundation/CastEngine/castengine_cast_framework/service/src/session/include/
H A Dcast_session_impl.h63 void NotifyEventChange(int moduleId, int event, const std::string &param) override;
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/
H A Dcast_session_listeners.cpp146 void CastSessionImpl::RtspListenerImpl::NotifyEventChange(int moduleId, int event, const std::string &param) in NotifyEventChange() function in OHOS::CastEngine::CastEngineService::CastSessionImpl::RtspListenerImpl
/foundation/CastEngine/castengine_cast_plus_stream/include/
H A Dcast_session_impl.h63 void NotifyEventChange(int moduleId, int event, const std::string &param) override;
/foundation/CastEngine/castengine_cast_plus_stream/src/
H A Dcast_session_listeners.cpp146 void CastSessionImpl::RtspListenerImpl::NotifyEventChange(int moduleId, int event, const std::string &param) in NotifyEventChange() function in OHOS::CastEngine::CastEngineService::CastSessionImpl::RtspListenerImpl
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_api/cloudsync_impl/
H A Dcloud_sync_manager_impl_test.cpp331 * @tc.desc: Verify the NotifyEventChange function.
342 auto res = CloudSyncManagerImpl::GetInstance().NotifyEventChange(userId, eventId, extraData); in HWTEST_F()
H A Dcloud_sync_service_proxy_test.cpp516 * @tc.desc: Verify the NotifyEventChange function.
522 GTEST_LOG_(INFO) << "NotifyEventChange Start"; in HWTEST_F()
528 int result = proxy_->NotifyEventChange(userId, eventId, extraData); in HWTEST_F()
530 GTEST_LOG_(INFO) << "NotifyEventChange End"; in HWTEST_F()
535 * @tc.desc: Verify the NotifyEventChange function.
541 GTEST_LOG_(INFO) << "NotifyEventChange Start"; in HWTEST_F()
547 int result = proxy_->NotifyEventChange(userId, eventId, extraData); in HWTEST_F()
549 GTEST_LOG_(INFO) << "NotifyEventChange End"; in HWTEST_F()
/foundation/filemanagement/dfs_service/services/cloudsyncservice/src/ipc/
H A Dcloud_sync_service_stub.cpp291 LOGI("Begin NotifyEventChange"); in HandleNotifyEventChange()
304 int32_t res = NotifyEventChange(userId, eventIdStr, extraDataStr); in HandleNotifyEventChange()
306 LOGI("End NotifyEventChange"); in HandleNotifyEventChange()
H A Dcloud_sync_service.cpp490 int32_t CloudSyncService::NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData) in NotifyEventChange() function in OHOS::FileManagement::CloudSync::CloudSyncService
/foundation/CastEngine/castengine_cast_plus_stream/src/rtsp/src/
H A Drtsp_controller.cpp463 listener_->NotifyEventChange(moduleId, event, param); in ProcessEventChangeRequest()
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/rtsp/src/
H A Drtsp_controller.cpp463 listener_->NotifyEventChange(moduleId, event, param); in ProcessEventChangeRequest()

Completed in 20 milliseconds