Home
last modified time | relevance | path

Searched refs:objectInfo (Results 1 - 25 of 92) sorted by relevance

1234

/foundation/multimedia/media_library/frameworks/services/media_mtp/src/payload_data/
H A Dget_object_info_data.cpp57 auto objectInfo = GetObjectInfo(); in Maker() local
58 if (objectInfo == nullptr) { in Maker()
63 MtpPacketTool::PutUInt32(outBuffer, objectInfo->storageID); in Maker()
64 MtpPacketTool::PutUInt16(outBuffer, objectInfo->format); in Maker()
65 MtpPacketTool::PutUInt16(outBuffer, objectInfo->protectionStatus); in Maker()
66 MtpPacketTool::PutUInt32(outBuffer, objectInfo->size); in Maker()
67 MtpPacketTool::PutUInt16(outBuffer, objectInfo->thumbFormat); in Maker()
68 MtpPacketTool::PutUInt32(outBuffer, objectInfo->thumbCompressedSize); in Maker()
69 MtpPacketTool::PutUInt32(outBuffer, objectInfo->thumbPixWidth); in Maker()
70 MtpPacketTool::PutUInt32(outBuffer, objectInfo in Maker()
95 SetObjectInfo(std::shared_ptr<ObjectInfo> &objectInfo) SetObjectInfo() argument
[all...]
/foundation/communication/nfc/frameworks/js/napi/tag/
H A Dnfc_napi_tagv.cpp29 NapiNfcVTag *objectInfo = nullptr; in GetResponseFlags() local
33 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetResponseFlags()
34 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetResponseFlags()
41 Iso15693Tag *nfcVTagPtr = static_cast<Iso15693Tag *>(static_cast<void *>(objectInfo->tagSession.get())); in GetResponseFlags()
43 ErrorLog("GetResponseFlags, find objectInfo failed!"); in GetResponseFlags()
57 NapiNfcVTag *objectInfo = nullptr; in GetDsfId() local
61 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetDsfId()
62 if (status != napi_ok || objectInfo == nullptr || objectInfo in GetDsfId()
[all...]
H A Dnfc_napi_tagb.cpp29 NapiNfcBTag *objectInfo = nullptr; in GetRespAppData() local
33 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetRespAppData()
34 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetRespAppData()
41 NfcBTag *nfcBTagPtr = static_cast<NfcBTag *>(static_cast<void *>(objectInfo->tagSession.get())); in GetRespAppData()
43 ErrorLog("GetRespAppData, find objectInfo failed!"); in GetRespAppData()
57 NapiNfcBTag *objectInfo = nullptr; in GetRespProtocol() local
61 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetRespProtocol()
62 if (status != napi_ok || objectInfo == nullptr || objectInfo in GetRespProtocol()
[all...]
H A Dnfc_napi_taga.cpp30 NapiNfcATag *objectInfo = nullptr; in GetSak() local
33 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetSak()
34 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetSak()
41 NfcATag *nfcTagPtr = static_cast<NfcATag *>(static_cast<void *>(objectInfo->tagSession.get())); in GetSak()
59 NapiNfcATag *objectInfo = nullptr; in GetAtqa() local
62 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetAtqa()
63 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetAtqa()
69 NfcATag *nfcTagPtr = static_cast<NfcATag *>(static_cast<void *>(objectInfo in GetAtqa()
[all...]
H A Dnfc_napi_tagf.cpp30 NapiNfcFTag *objectInfo = nullptr; in GetSystemCode() local
34 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetSystemCode()
35 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetSystemCode()
42 NfcFTag *nfcFTagPtr = static_cast<NfcFTag *>(static_cast<void *>(objectInfo->tagSession.get())); in GetSystemCode()
44 ErrorLog("GetSystemCode find objectInfo failed!"); in GetSystemCode()
58 NapiNfcFTag *objectInfo = nullptr; in GetPmm() local
62 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetPmm()
63 if (status != napi_ok || objectInfo == nullptr || objectInfo in GetPmm()
[all...]
H A Dnfc_napi_tag_isodep.cpp30 NapiIsoDepTag *objectInfo = nullptr; in GetHistoricalBytes() local
34 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetHistoricalBytes()
35 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetHistoricalBytes()
42 IsoDepTag *nfcIsoDepTagPtr = static_cast<IsoDepTag *>(static_cast<void *>(objectInfo->tagSession.get())); in GetHistoricalBytes()
44 ErrorLog("GetHistoricalBytes, find objectInfo failed!"); in GetHistoricalBytes()
58 NapiIsoDepTag *objectInfo = nullptr; in GetHiLayerResponse() local
62 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetHiLayerResponse()
63 if (status != napi_ok || objectInfo == nullptr || objectInfo in GetHiLayerResponse()
[all...]
H A Dnfc_napi_tag_mifare_classic.cpp41 NapiMifareClassicTag *objectInfo = nullptr; in GetSectorCount() local
45 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetSectorCount()
46 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetSectorCount()
54 static_cast<MifareClassicTag *>(static_cast<void *>(objectInfo->tagSession.get())); in GetSectorCount()
56 ErrorLog("GetSectorCount, find objectInfo failed!"); in GetSectorCount()
79 NapiMifareClassicTag *objectInfo = nullptr; in GetBlockCountInSector() local
81 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetBlockCountInSector()
90 static_cast<MifareClassicTag *>(static_cast<void *>(objectInfo->tagSession.get())); in GetBlockCountInSector()
105 NapiMifareClassicTag *objectInfo in GetType() local
134 NapiMifareClassicTag *objectInfo = nullptr; GetTagSize() local
164 NapiMifareClassicTag *objectInfo = nullptr; IsEmulatedTag() local
202 NapiMifareClassicTag *objectInfo = nullptr; GetBlockIndex() local
236 NapiMifareClassicTag *objectInfo = nullptr; GetSectorIndex() local
[all...]
H A Dnfc_napi_tag_ndef.cpp190 NapiNdefTag *objectInfo = nullptr; in GetNdefTagType() local
193 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetNdefTagType()
194 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetNdefTagType()
201 NdefTag *nfcNdefTagPtr = static_cast<NdefTag *>(static_cast<void *>(objectInfo->tagSession.get())); in GetNdefTagType()
203 ErrorLog("GetNdefTagType, find objectInfo failed!"); in GetNdefTagType()
218 NapiNdefTag *objectInfo = nullptr; in GetNdefMessage() local
221 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetNdefMessage()
222 if (status != napi_ok || objectInfo == nullptr || objectInfo in GetNdefMessage()
268 NapiNdefTag *objectInfo = nullptr; IsNdefWritable() local
476 NapiNdefTag *objectInfo = nullptr; CanSetReadOnly() local
586 NapiNdefTag *objectInfo = nullptr; GetNdefTagTypeString() local
[all...]
H A Dnfc_napi_tag_mifare_ul.cpp60 static_cast<MifareUltralightTag *>(static_cast<void *>(context->objectInfo->tagSession.get())); in NativeReadMultiplePages()
111 context->objectInfo = objectInfoCb; in ReadMultiplePages()
145 static_cast<MifareUltralightTag *>(static_cast<void *>(context->objectInfo->tagSession.get())); in NativeWriteSinglePages()
197 context->objectInfo = objectInfoCb; in WriteSinglePage()
209 NapiMifareUltralightTag *objectInfo = nullptr; in GetType() local
213 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetType()
214 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetType()
221 static_cast<MifareUltralightTag *>(static_cast<void *>(objectInfo->tagSession.get())); in GetType()
H A Dnfc_napi_tag_ndef_formatable.cpp62 static_cast<NdefFormatableTag *>(static_cast<void *>(context->objectInfo->tagSession.get())); in NativeFormat()
113 context->objectInfo = objectInfoCb; in Format()
123 static_cast<NdefFormatableTag *>(static_cast<void *>(context->objectInfo->tagSession.get())); in NativeFormatReadOnly()
174 context->objectInfo = objectInfoCb; in FormatReadOnly()
H A Dnfc_napi_ndef_message.cpp30 NapiNdefMessage *objectInfo = nullptr; in GetNdefRecords() local
31 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetNdefRecords()
32 if (status != napi_ok || objectInfo == nullptr || objectInfo->ndefMessage == nullptr) { in GetNdefRecords()
37 std::shared_ptr<NdefMessage> ndefMessagePtr = objectInfo->ndefMessage; in GetNdefRecords()
/foundation/arkui/napi/sample/native_module_storage/
H A Djs_storage.cpp239 asyncContext->objectInfo->Emit(nullptr, "error"); in CreateAsyncWorkOfGet()
280 asyncContext->objectInfo->Emit(nullptr, "change"); in CreateAsyncWorkOfSet()
286 asyncContext->objectInfo->Emit(nullptr, "error"); in CreateAsyncWorkOfSet()
328 asyncContext->objectInfo->Emit(nullptr, "change"); in CreateAsyncWorkOfDelete()
334 asyncContext->objectInfo->Emit(nullptr, "error"); in CreateAsyncWorkOfDelete()
376 asyncContext->objectInfo->Emit(nullptr, "change"); in CreateAsyncWorkOfClear()
382 asyncContext->objectInfo->Emit(nullptr, "error"); in CreateAsyncWorkOfClear()
410 auto objectInfo = new StorageObjectInfo(env); in JSStorageConstructor() local
412 env, thisVar, objectInfo, in JSStorageConstructor()
414 auto objectInfo in JSStorageConstructor()
607 StorageObjectInfo* objectInfo = nullptr; JSStorageGetSync() local
651 StorageObjectInfo* objectInfo = nullptr; JSStorageSetSync() local
686 StorageObjectInfo* objectInfo = nullptr; JSStorageDeleteSync() local
710 StorageObjectInfo* objectInfo = nullptr; JSStorageClearSync() local
745 StorageObjectInfo* objectInfo = nullptr; JSStorageOn() local
774 StorageObjectInfo* objectInfo = nullptr; JSStorageOff() local
[all...]
/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/output/
H A Ddeferred_photo_proxy_napi.cpp141 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in GetThumbnail()
142 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in GetThumbnail()
154 if (context->objectInfo != nullptr) { in GetThumbnail()
175 void* fdAddr = context->objectInfo->deferredPhotoProxy_->GetFileDataAddr(); in DeferredPhotoAsyncTaskComplete()
176 int32_t thumbnailWidth = context->objectInfo->deferredPhotoProxy_->GetWidth(); in DeferredPhotoAsyncTaskComplete()
177 int32_t thumbnailHeight = context->objectInfo->deferredPhotoProxy_->GetHeight(); in DeferredPhotoAsyncTaskComplete()
203 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in Release()
204 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in Release()
216 if (context->objectInfo != nullptr) { in Release()
224 delete context->objectInfo; in Release()
[all...]
H A Ddepth_data_napi.cpp250 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in Release()
251 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in Release()
264 if (context->objectInfo != nullptr) { in Release()
266 context->objectInfo->format_ = nullptr; in Release()
267 context->objectInfo->depthMap_ = nullptr; in Release()
268 context->objectInfo->qualityLevel_ = nullptr; in Release()
269 context->objectInfo->accuracy_ = nullptr; in Release()
276 delete context->objectInfo; in Release()
H A Dphoto_napi.cpp217 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in Release()
218 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in Release()
231 if (context->objectInfo != nullptr) { in Release()
233 context->objectInfo->mainImage_ = nullptr; in Release()
234 context->objectInfo->rawImage_ = nullptr; in Release()
241 delete context->objectInfo; in Release()
H A Ddepth_data_output_napi.cpp464 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in Release()
465 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in Release()
481 if (context->objectInfo != nullptr) { in Release()
484 ((sptr<DepthDataOutput>&)(context->objectInfo->depthDataOutput_))->Release(); in Release()
517 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in Start()
518 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in Start()
535 if (context->objectInfo != nullptr) { in Start()
537 context->errorCode = context->objectInfo->depthDataOutput_->Start(); in Start()
571 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in Stop()
572 if (status == napi_ok && asyncContext->objectInfo ! in Stop()
[all...]
/foundation/multimedia/player_framework/frameworks/js/system_sound_manager/src/
H A Dsystem_sound_manager_napi.cpp496 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in SetRingtoneUri()
497 CHECK_AND_RETURN_RET_LOG(status == napi_ok && asyncContext->objectInfo != nullptr, result, in SetRingtoneUri()
543 context->status = context->objectInfo->sysSoundMgrClient_->SetRingtoneUri( in AsyncSetRingtoneUri()
569 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in GetRingtoneUri()
570 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in GetRingtoneUri()
610 context->uri = context->objectInfo->sysSoundMgrClient_->GetRingtoneUri( in AsyncGetRingtoneUri()
677 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in GetRingtonePlayer()
678 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in GetRingtonePlayer()
717 std::shared_ptr<RingtonePlayer> ringtonePlayer =context->objectInfo->sysSoundMgrClient_-> in AsyncGetRingtonePlayer()
742 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in SetSystemToneUri()
[all...]
H A Dsystem_sound_manager_napi_ext.cpp65 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in GetToneHapticsSettings()
66 CHECK_AND_RETURN_RET_LOG(status == napi_ok && asyncContext->objectInfo != nullptr, result, in GetToneHapticsSettings()
99 if (context->objectInfo->sysSoundMgrClient_ == nullptr) { in AsyncGetToneHapticsSettings()
102 int32_t result = context->objectInfo->sysSoundMgrClient_->GetToneHapticsSettings(context->abilityContext_, in AsyncGetToneHapticsSettings()
183 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in SetToneHapticsSettings()
184 CHECK_AND_RETURN_RET_LOG(status == napi_ok && asyncContext->objectInfo != nullptr, result, in SetToneHapticsSettings()
219 if (context->objectInfo->sysSoundMgrClient_ == nullptr) { in AsyncSetToneHapticsSettings()
222 int32_t result = context->objectInfo->sysSoundMgrClient_->SetToneHapticsSettings(context->abilityContext_, in AsyncSetToneHapticsSettings()
280 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in GetToneHapticsList()
281 CHECK_AND_RETURN_RET_LOG(status == napi_ok && asyncContext->objectInfo ! in GetToneHapticsList()
[all...]
/foundation/multimedia/player_framework/frameworks/js/system_sound_manager/src/system_tone_player/
H A Dsystem_tone_player_napi.cpp224 status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&asyncContext->objectInfo)); in GetTitle()
225 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in GetTitle()
240 auto obj = reinterpret_cast<SystemTonePlayerNapi*>(context->objectInfo); in GetTitle()
281 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in Prepare()
282 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in Prepare()
297 auto obj = reinterpret_cast<SystemTonePlayerNapi *>(context->objectInfo); in Prepare()
369 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in Start()
370 CHECK_AND_RETURN_RET_LOG(status == napi_ok && asyncContext->objectInfo != nullptr, result, in Start()
371 "Start: napi_unwrap failed or objectInfo is nullptr."); in Start()
411 auto obj = reinterpret_cast<SystemTonePlayerNapi *>(context->objectInfo); in AsyncStart()
566 SystemTonePlayerNapi *objectInfo = nullptr; SetAudioVolumeScale() local
598 SystemTonePlayerNapi* objectInfo = nullptr; GetAudioVolumeScale() local
717 SystemTonePlayerNapi* objectInfo = nullptr; SetHapticsFeature() local
749 SystemTonePlayerNapi* objectInfo = nullptr; GetHapticsFeature() local
[all...]
/foundation/multimedia/media_library/frameworks/js/src/
H A Dmedia_album_change_request_napi.cpp265 auto changeRequest = asyncContext->objectInfo; in JSGetAlbum()
416 auto changeRequest = asyncContext->objectInfo; in JSAddAssets()
443 auto changeRequest = asyncContext->objectInfo; in JSRemoveAssets()
476 auto changeRequest = asyncContext->objectInfo; in JSMoveAssets()
513 auto changeRequest = asyncContext->objectInfo; in JSRecoverAssets()
546 auto changeRequest = asyncContext->objectInfo; in JSDeleteAssets()
620 auto photoAlbum = asyncContext->objectInfo->GetPhotoAlbumInstance(); in JSSetIsMe()
624 asyncContext->objectInfo->albumChangeOperations_.push_back(AlbumChangeOperation::SET_IS_ME); in JSSetIsMe()
662 if (!CheckDismissAssetVaild(asyncContext->objectInfo->dismissAssets_, newAssetArray)) { in JSDismissAssets()
666 auto photoAlbum = asyncContext->objectInfo in JSDismissAssets()
[all...]
H A Dmedia_asset_change_request_napi.cpp487 auto changeRequest = asyncContext->objectInfo; in JSGetAsset()
994 auto changeRequest = asyncContext->objectInfo; in JSSetEditData()
1031 auto changeRequest = asyncContext->objectInfo; in JSSetFavorite()
1052 auto changeRequest = asyncContext->objectInfo; in JSSetHidden()
1068 auto changeRequest = asyncContext->objectInfo; in JSSetTitle()
1103 auto changeRequest = asyncContext->objectInfo; in JSSetOrientation()
1130 auto changeRequest = asyncContext->objectInfo; in JSSetVideoEnhancementAttr()
1150 asyncContext->objectInfo->fileAsset_->SetLongitude(longitude); in JSSetLocation()
1151 asyncContext->objectInfo->fileAsset_->SetLatitude(latitude); in JSSetLocation()
1152 asyncContext->objectInfo in JSSetLocation()
[all...]
/foundation/multimedia/player_framework/frameworks/js/system_sound_manager/src/ringtone_player/
H A Dringtone_player_napi.cpp255 status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&asyncContext->objectInfo)); in GetTitle()
256 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in GetTitle()
271 context->title = context->objectInfo->ringtonePlayer_->GetTitle(); in GetTitle()
347 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in GetAudioRendererInfo()
348 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in GetAudioRendererInfo()
378 context->status = context->objectInfo->ringtonePlayer_->GetAudioRendererInfo(rendererInfo); in AsyncGetAudioRendererInfo()
403 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in Configure()
404 if (status == napi_ok && asyncContext->objectInfo != nullptr) { in Configure()
447 context->status = context->objectInfo->ringtonePlayer_->Configure(context->volume, context->loop); in AsyncConfigure()
469 status = napi_unwrap(env, thisVar, reinterpret_cast<void**>(&asyncContext->objectInfo)); in Start()
[all...]
/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/include/output/
H A Ddepth_data_napi.h59 DepthDataNapi* objectInfo; member
63 objectInfo = nullptr; in ~DepthDataAsyncContext()
H A Dphoto_napi.h52 PhotoNapi* objectInfo; member
56 objectInfo = nullptr; in ~PhotoAsyncContext()
/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/input/
H A Dcamera_input_napi.cpp316 CameraNapiParamParser jsParamParser(env, info, asyncContext->objectInfo, asyncFunction, isEnableSecureCamera); in Open()
322 jsParamParser = CameraNapiParamParser(env, info, asyncContext->objectInfo, asyncFunction); in Open()
334 CHECK_ERROR_RETURN_LOG(context->objectInfo == nullptr, "CameraInputNapi::Open async info is nullptr"); in Open()
340 context->errorCode = context->objectInfo->GetCameraInput()->Open(true, &context->secureCameraSeqId); in Open()
343 context->errorCode = context->objectInfo->GetCameraInput()->Open(); in Open()
372 CameraNapiParamParser jsParamParser(env, info, asyncContext->objectInfo, asyncFunction); in Close()
383 CHECK_ERROR_RETURN_LOG(context->objectInfo == nullptr, "CameraInputNapi::Close async info is nullptr"); in Close()
386 context->errorCode = context->objectInfo->GetCameraInput()->Close(); in Close()
414 CameraNapiParamParser jsParamParser(env, info, asyncContext->objectInfo, asyncFunction); in Release()
425 CHECK_ERROR_RETURN_LOG(context->objectInfo in Release()
[all...]

Completed in 21 milliseconds

1234