Searched refs:extNativeSoHandle_ (Results 1 – 2 of 2) sorted by relevance
40 extNativeSoHandle_ = nullptr; in ImageFwkExtManager()48 if (!isImageFwkExtNativeSoOpened_ || extNativeSoHandle_ == nullptr) { in ~ImageFwkExtManager()52 if (dlclose(extNativeSoHandle_)) { in ~ImageFwkExtManager()65 extNativeSoHandle_ = dlopen(IMAGE_FWK_EXT_NATIVE_SO.c_str(), RTLD_LAZY); in LoadImageFwkExtNativeSo()66 if (extNativeSoHandle_ == nullptr) { in LoadImageFwkExtNativeSo()72 … reinterpret_cast<HevcSoftwareDecodeFunc>(dlsym(extNativeSoHandle_, "HevcSoftwareDecode")); in LoadImageFwkExtNativeSo()75 dlclose(extNativeSoHandle_); in LoadImageFwkExtNativeSo()76 extNativeSoHandle_ = nullptr; in LoadImageFwkExtNativeSo()79 …ardwareEncodePictureFunc_ = reinterpret_cast<DoHardwareEncodePictureFunc>(dlsym(extNativeSoHandle_, in LoadImageFwkExtNativeSo()83 dlclose(extNativeSoHandle_); in LoadImageFwkExtNativeSo()[all …]
54 void* extNativeSoHandle_; variable