Home
last modified time | relevance | path

Searched refs:remoteCallback (Results 1 - 19 of 19) sorted by relevance

/foundation/multimedia/camera_framework/frameworks/native/camera/src/deferred_proc_session/
H A Ddeferred_video_proc_session.cpp188 sptr<DeferredProcessing::IDeferredVideoProcessingSessionCallback> remoteCallback = nullptr; in ConnectDeferredProcessingSession() local
192 remoteCallback = new(std::nothrow) DeferredVideoProcessingSessionCallback(deferredVideoProcSession); in ConnectDeferredProcessingSession()
193 CHECK_ERROR_RETURN(remoteCallback == nullptr); in ConnectDeferredProcessingSession()
194 serviceProxy_->CreateDeferredVideoProcessingSession(userId_, remoteCallback, session); in ConnectDeferredProcessingSession()
H A Ddeferred_photo_proc_session.cpp256 sptr<DeferredProcessing::IDeferredPhotoProcessingSessionCallback> remoteCallback = nullptr; in ConnectDeferredProcessingSession() local
260 remoteCallback = new(std::nothrow) DeferredPhotoProcessingSessionCallback(deferredPhotoProcSession); in ConnectDeferredProcessingSession()
261 CHECK_ERROR_RETURN(remoteCallback == nullptr); in ConnectDeferredProcessingSession()
262 serviceProxy_->CreateDeferredPhotoProcessingSession(userId_, remoteCallback, session); in ConnectDeferredProcessingSession()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_interactable_view.cpp343 RemoteCallback remoteCallback; in JsCommonRemoteMessage() local
344 JsRemoteMessage(info, remoteCallback); in JsCommonRemoteMessage()
345 ViewAbstractModel::GetInstance()->SetOnRemoteMessage(std::move(remoteCallback)); in JsCommonRemoteMessage()
349 void JSInteractableView::JsRemoteMessage(const JSCallbackInfo& info, RemoteCallback& remoteCallback) in JsRemoteMessage() argument
356 remoteCallback = [func = std::move(eventCallback)](const BaseEventInfo* info) { in JsRemoteMessage()
H A Djs_interactable_view.h57 static void JsRemoteMessage(const JSCallbackInfo& info, RemoteCallback& remoteCallback);
H A Djs_span.cpp289 RemoteCallback remoteCallback; in JsRemoteMessage() local
290 JSInteractableView::JsRemoteMessage(info, remoteCallback); in JsRemoteMessage()
291 EventMarker remoteMessageEventId(std::move(remoteCallback)); in JsRemoteMessage()
H A Djs_button.cpp356 RemoteCallback remoteCallback; in JsRemoteMessage() local
357 JSInteractableView::JsRemoteMessage(info, remoteCallback); in JsRemoteMessage()
358 ButtonModel::GetInstance()->SetRemoteMessage(std::move(remoteCallback)); in JsRemoteMessage()
H A Djs_swiper.cpp110 RemoteCallback remoteCallback; in JsRemoteMessage() local
111 JSInteractableView::JsRemoteMessage(info, remoteCallback); in JsRemoteMessage()
113 SwiperModel::GetInstance()->SetRemoteMessageEventId(std::move(remoteCallback)); in JsRemoteMessage()
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dinsight_intent_execute_manager.cpp159 sptr<IInsightIntentExecuteCallback> remoteCallback = iface_cast<IInsightIntentExecuteCallback>(record->callerToken); in ExecuteIntentDone() local
160 if (remoteCallback == nullptr) { in ExecuteIntentDone()
164 remoteCallback->OnExecuteDone(record->key, resultCode, result); in ExecuteIntentDone()
H A Dability_auto_startup_service.cpp315 auto remoteCallback = iface_cast<IAutoStartupCallBack>(it->second); in ExecuteCallbacks() local
316 if (remoteCallback != nullptr) { in ExecuteCallbacks()
318 remoteCallback->OnAutoStartupOn(info); in ExecuteCallbacks()
320 remoteCallback->OnAutoStartupOff(info); in ExecuteCallbacks()
H A Dability_manager_service.cpp11041 sptr<IRemoteObject> remoteCallback = callback; in RequestAssertFaultDialog() local
11042 if (remoteCallback == nullptr) { in RequestAssertFaultDialog()
11059 uint64_t assertFaultSessionId = reinterpret_cast<uint64_t>(remoteCallback.GetRefPtr()); in RequestAssertFaultDialog()
11081 callbackDeathMgr->AddAssertFaultCallback(remoteCallback, callbackTask); in RequestAssertFaultDialog()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dswiper_model_impl.h46 void SetRemoteMessageEventId(RemoteCallback&& remoteCallback) override;
H A Dbutton_model_impl.h47 void SetRemoteMessage(RemoteCallback&& remoteCallback) override;
H A Dswiper_model_impl.cpp224 void SwiperModelImpl::SetRemoteMessageEventId(RemoteCallback&& remoteCallback) in SetRemoteMessageEventId() argument
226 EventMarker remoteMessageEventId(std::move(remoteCallback)); in SetRemoteMessageEventId()
H A Dbutton_model_impl.cpp387 void ButtonModelImpl::SetRemoteMessage(RemoteCallback&& remoteCallback) in SetRemoteMessage() argument
389 EventMarker remoteMessageEventId(std::move(remoteCallback)); in SetRemoteMessage()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/button/
H A Dbutton_model.h57 virtual void SetRemoteMessage(RemoteCallback&& remoteCallback) {} in SetRemoteMessage() argument
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/
H A Dswiper_model.h126 virtual void SetRemoteMessageEventId(RemoteCallback&& remoteCallback);
H A Dswiper_model_ng.h60 void SetRemoteMessageEventId(RemoteCallback&& remoteCallback) override;
H A Dswiper_model_ng.cpp269 void SwiperModelNG::SetRemoteMessageEventId(RemoteCallback&& remoteCallback) {} in SetRemoteMessageEventId() argument
/foundation/multimedia/camera_framework/frameworks/native/camera/src/input/
H A Dcamera_manager.cpp431 sptr<DeferredProcessing::IDeferredPhotoProcessingSessionCallback> remoteCallback = in CreateDeferredPhotoProcessingSession() local
433 CHECK_ERROR_RETURN_RET_LOG(remoteCallback == nullptr, CameraErrorCode::SERVICE_FATL_ERROR, in CreateDeferredPhotoProcessingSession()
434 "CreateDeferredPhotoProcessingSession failed to new remoteCallback!"); in CreateDeferredPhotoProcessingSession()
437 int32_t retCode = serviceProxy->CreateDeferredPhotoProcessingSession(userId, remoteCallback, session); in CreateDeferredPhotoProcessingSession()
479 sptr<DeferredProcessing::IDeferredVideoProcessingSessionCallback> remoteCallback = in CreateDeferredVideoProcessingSession() local
481 CHECK_ERROR_RETURN_RET_LOG(remoteCallback == nullptr, CameraErrorCode::SERVICE_FATL_ERROR, in CreateDeferredVideoProcessingSession()
482 "CreateDeferredVideoProcessingSession failed to new remoteCallback!"); in CreateDeferredVideoProcessingSession()
485 int32_t retCode = serviceProxy->CreateDeferredVideoProcessingSession(userId, remoteCallback, session); in CreateDeferredVideoProcessingSession()

Completed in 40 milliseconds