Home
last modified time | relevance | path

Searched refs:DepthDataOutputCallback (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/include/output/
H A Ddepth_data_output_napi.h94 class DepthDataOutputCallback : public DepthDataStateCallback,
96 public std::enable_shared_from_this<DepthDataOutputCallback> {
98 explicit DepthDataOutputCallback(napi_env env);
99 ~DepthDataOutputCallback() = default;
112 weak_ptr<const DepthDataOutputCallback> listener_;
114 shared_ptr<const DepthDataOutputCallback> listener) in DepthDataOutputCallbackInfo()
158 std::shared_ptr<DepthDataOutputCallback> depthDataCallback_;
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/output/
H A Ddepth_data_output_napi.cpp199 DepthDataOutputCallback::DepthDataOutputCallback(napi_env env) : ListenerBase(env) {} in DepthDataOutputCallback() function in OHOS::CameraStandard::DepthDataOutputCallback
201 void DepthDataOutputCallback::OnDepthDataError(const int32_t errorCode) const in OnDepthDataError()
208 void DepthDataOutputCallback::UpdateJSCallbackAsync(DepthDataOutputEventType eventType, const int32… in UpdateJSCallbackAsync()
244 void DepthDataOutputCallback::UpdateJSCallback(DepthDataOutputEventType eventType, const int32_t va… in UpdateJSCallback()
643 depthDataCallback_ = std::make_shared<DepthDataOutputCallback>(env); in RegisterErrorCallbackListener()