Home
last modified time | relevance | path

Searched refs:PhotoNapi (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/output/
H A Dphoto_napi.cpp25 thread_local napi_ref PhotoNapi::sConstructor_ = nullptr;
26 thread_local napi_value PhotoNapi::sMainImage_ = nullptr;
27 thread_local napi_value PhotoNapi::sRawImage_ = nullptr;
28 thread_local uint32_t PhotoNapi::photoTaskId = PHOTO_TASKID;
30 PhotoNapi::PhotoNapi() : env_(nullptr), mainImage_(nullptr), rawImage_(nullptr) {} in PhotoNapi() function in OHOS::CameraStandard::PhotoNapi
32 PhotoNapi::~PhotoNapi() in ~PhotoNapi()
49 std::unique_ptr<PhotoNapi> obj = std::make_unique<PhotoNapi>(); in PhotoNapiConstructor()
69 PhotoNapi* photo = reinterpret_cast<PhotoNapi*>(nativeObject); in PhotoNapiDestructor()
75 napi_value PhotoNapi::Init(napi_env env, napi_value exports) in Init()
142 PhotoNapi* photoNapi = nullptr; in GetMain()
[all …]
H A Dphoto_output_napi.cpp844 napi_value photoValue = PhotoNapi::CreatePhoto(env_, mainImage); in ExecutePhoto()
1181 result[PARAM1] = PhotoNapi::CreateRawPhoto(env_, rawImage); in ExecuteRawPhoto()
/ohos5.0/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/include/output/
H A Dphoto_napi.h25 class PhotoNapi {
30 PhotoNapi();
31 ~PhotoNapi();
52 PhotoNapi* objectInfo;
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/
H A Dnative_module_ohos_camera.cpp87 PhotoNapi::Init(env, exports); in Export()