/foundation/filemanagement/dfs_service/interfaces/kits/js/cloudsyncmanager/ |
H A D | cloud_sync_manager_n_exporter.h | 25 napi_value NotifyEventChange(napi_env env, napi_callback_info info);
|
H A D | cloud_sync_manager_n_exporter.cpp | 138 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 D | rtsp_listener.h | 40 virtual void NotifyEventChange(int moduleId, int event, const std::string ¶m) = 0;
|
/foundation/CastEngine/castengine_cast_plus_stream/src/rtsp/include/ |
H A D | rtsp_listener.h | 40 virtual void NotifyEventChange(int moduleId, int event, const std::string ¶m) = 0;
|
/foundation/filemanagement/dfs_service/interfaces/inner_api/native/cloudsync_kit_inner/ |
H A D | i_cloud_sync_service.h | 40 virtual int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData) = 0;
|
H A D | cloud_sync_manager.h | 95 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 D | cloud_sync_service_proxy.h | 41 int32_t NotifyEventChange(int32_t userId, const std::string &eventId, const std::string &extraData) override;
|
H A D | cloud_sync_manager_impl.h | 45 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 D | i_cloud_sync_service_mock.h | 88 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 D | cloud_sync_manager_impl.cpp | 199 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 D | cloud_sync_service_proxy.cpp | 509 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 D | cloud_sync_service_proxy_lite.cpp | 199 int32_t CloudSyncServiceProxy::NotifyEventChange(
in NotifyEventChange() function in OHOS::FileManagement::CloudSync::CloudSyncServiceProxy
|
/foundation/filemanagement/dfs_service/services/cloudsyncservice/include/ipc/ |
H A D | cloud_sync_service.h | 51 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 D | cloud_sync_service_stub_test.cpp | 43 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 D | cast_session_impl.h | 63 void NotifyEventChange(int moduleId, int event, const std::string ¶m) override;
|
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/ |
H A D | cast_session_listeners.cpp | 146 void CastSessionImpl::RtspListenerImpl::NotifyEventChange(int moduleId, int event, const std::string ¶m) in NotifyEventChange() function in OHOS::CastEngine::CastEngineService::CastSessionImpl::RtspListenerImpl
|
/foundation/CastEngine/castengine_cast_plus_stream/include/ |
H A D | cast_session_impl.h | 63 void NotifyEventChange(int moduleId, int event, const std::string ¶m) override;
|
/foundation/CastEngine/castengine_cast_plus_stream/src/ |
H A D | cast_session_listeners.cpp | 146 void CastSessionImpl::RtspListenerImpl::NotifyEventChange(int moduleId, int event, const std::string ¶m) in NotifyEventChange() function in OHOS::CastEngine::CastEngineService::CastSessionImpl::RtspListenerImpl
|
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_api/cloudsync_impl/ |
H A D | cloud_sync_manager_impl_test.cpp | 331 * @tc.desc: Verify the NotifyEventChange function. 342 auto res = CloudSyncManagerImpl::GetInstance().NotifyEventChange(userId, eventId, extraData); in HWTEST_F()
|
H A D | cloud_sync_service_proxy_test.cpp | 516 * @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 D | cloud_sync_service_stub.cpp | 291 LOGI("Begin NotifyEventChange"); in HandleNotifyEventChange() 304 int32_t res = NotifyEventChange(userId, eventIdStr, extraDataStr); in HandleNotifyEventChange() 306 LOGI("End NotifyEventChange"); in HandleNotifyEventChange()
|
H A D | cloud_sync_service.cpp | 490 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 D | rtsp_controller.cpp | 463 listener_->NotifyEventChange(moduleId, event, param); in ProcessEventChangeRequest()
|
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/rtsp/src/ |
H A D | rtsp_controller.cpp | 463 listener_->NotifyEventChange(moduleId, event, param); in ProcessEventChangeRequest()
|