Searched refs:handle_ (Results 1 – 12 of 12) sorted by relevance
/base/global/resource_management/frameworks/resmgr/src/ |
D | resource_manager_ext_mgr.cpp | 35 if (handle_ != nullptr) { in ~ResourceManagerExtMgr() 36 dlclose(handle_); in ~ResourceManagerExtMgr() 38 handle_ = nullptr; in ~ResourceManagerExtMgr() 44 if (handle_ == nullptr) { in Init() 46 handle_ = dlopen(pluginPath.c_str(), RTLD_LAZY); in Init() 47 if (handle_ == nullptr) { in Init() 58 IResMgrExt iResMgrExt = (IResMgrExt)dlsym(handle_, "CreateResMgrExt"); in Init()
|
/base/useriam/face_auth/services/src/ |
D | service_ex_manager.cpp | 45 handle_ = dlopen(SO_NAME, RTLD_LAZY); in Acquire() 46 if (handle_ == nullptr) { in Acquire() 67 IF_FALSE_LOGE_AND_RETURN_VAL(handle_ != nullptr, nullptr); in GetScreenBrightnessTask() 70 …reinterpret_cast<GetScreenBrightnessTaskFunc>(dlsym(handle_, GET_SCREEN_BRIGHTNESS_TASK_SYMBOL_NAM… in GetScreenBrightnessTask()
|
/base/useriam/fingerprint_auth/services/src/ |
D | service_ex_manager.cpp | 46 handle_ = dlopen(SO_NAME, RTLD_LAZY); in Acquire() 47 if (handle_ == nullptr) { in Acquire() 68 IF_FALSE_LOGE_AND_RETURN_VAL(handle_ != nullptr, nullptr); in GetSensorIlluminationTask() 71 …reinterpret_cast<GetSensorIlluminationTaskFunc>(dlsym(handle_, GET_SENSOR_ILLUMINATION_TASK_SYMBOL… in GetSensorIlluminationTask()
|
/base/update/sys_installer/services/module_update/util/src/ |
D | module_zip_helper.cpp | 69 handle_ = unzOpen(path.c_str()); in ModuleZipHelper() 77 int err = unzClose(handle_); in ~ModuleZipHelper() 91 int err = unzGetGlobalInfo(handle_, &info); in GetNumberOfEntry() 106 int err = unzLocateFile2(handle_, filename.c_str(), 0); in LocateFile() 124 int err = unzGetCurrentFileInfo(handle_, &info, nullptr, 0, nullptr, 0, nullptr, 0); in GetFileSize() 140 int err = unzGetFilePos(handle_, &filePos); in GetFileOffset() 205 int err = unzOpenCurrentFile(handle_); in GetFileContent() 210 int size = unzReadCurrentFile(handle_, reinterpret_cast<void *>(&(buf)[0]), length); in GetFileContent() 211 err = unzCloseCurrentFile(handle_); in GetFileContent()
|
/base/telephony/sms_mms/services/sms/ |
D | ims_reg_state_callback_stub.cpp | 25 : handle_(handle) in ImsRegStateCallbackStub() 48 if (handle_ != nullptr) { in OnImsRegInfoChanged() 50 handle_->SendEvent(item); in OnImsRegInfoChanged()
|
/base/update/sys_installer/services/module_update/util/include/ |
D | module_zip_helper.h | 34 return handle_ != nullptr; in IsValid() 43 unzFile handle_ = nullptr; variable
|
/base/hiviewdfx/hiview/base/ |
D | plugin.cpp | 28 if (handle_ != DynamicModuleDefault) { in ~Plugin() 29 UnloadModule(handle_); in ~Plugin() 30 handle_ = DynamicModuleDefault; in ~Plugin()
|
/base/useriam/face_auth/services/inc/ |
D | service_ex_manager.h | 42 void *handle_; variable
|
/base/useriam/fingerprint_auth/services/inc/ |
D | service_ex_manager.h | 41 void *handle_; variable
|
/base/telephony/sms_mms/services/sms/include/ |
D | ims_reg_state_callback_stub.h | 33 std::shared_ptr<AppExecFwk::EventHandler> handle_; variable
|
/base/global/resource_management/frameworks/resmgr/include/ |
D | resource_manager_ext_mgr.h | 34 void *handle_ = nullptr;
|
/base/hiviewdfx/hiview/base/include/ |
D | plugin.h | 42 Plugin() : handle_(DynamicModuleDefault), context_(nullptr), useCount_(0) {}; in Plugin() 128 handle_ = handle; in SetHandle() 129 if (handle_ != nullptr) { in SetHandle() 187 DynamicModule handle_;
|