Home
last modified time | relevance | path

Searched refs:so_handle (Results 1 - 3 of 3) sorted by relevance

/foundation/distributedhardware/device_manager/services/implementation/src/config/
H A Ddm_config_manager.cpp140 void *so_handle = nullptr; in ~DmConfigManager() local
147 so_handle = dlopen(soPathName.c_str(), RTLD_NOW | RTLD_NOLOAD); in ~DmConfigManager()
148 if (so_handle != nullptr) { in ~DmConfigManager()
149 LOGI("DmConfigManager so_handle is not nullptr first."); in ~DmConfigManager()
150 dlclose(so_handle); in ~DmConfigManager()
159 so_handle = dlopen(soPathName.c_str(), RTLD_NOW | RTLD_NOLOAD); in ~DmConfigManager()
160 if (so_handle != nullptr) { in ~DmConfigManager()
161 LOGI("DmConfigManager so_handle is not nullptr second."); in ~DmConfigManager()
162 dlclose(so_handle); in ~DmConfigManager()
187 void *so_handle in GetCryptoAdapter() local
220 void *so_handle = nullptr; GetAuthAdapter() local
[all...]
/foundation/distributedhardware/device_manager/services/service/src/
H A Ddevice_manager_service.cpp937 void *so_handle = dlopen(LIB_IMPL_NAME, RTLD_NOW | RTLD_NODELETE); in IsDMServiceImplReady() local
938 if (so_handle == nullptr) { in IsDMServiceImplReady()
943 auto func = (CreateDMServiceFuncPtr)dlsym(so_handle, "CreateDMServiceObject"); in IsDMServiceImplReady()
945 dlclose(so_handle); in IsDMServiceImplReady()
955 dlclose(so_handle); in IsDMServiceImplReady()
1168 void *so_handle = dlopen(LIB_IMPL_NAME, RTLD_NOW | RTLD_NOLOAD); in UnloadDMServiceImplSo() local
1169 if (so_handle != nullptr) { in UnloadDMServiceImplSo()
1170 LOGI("DeviceManagerService so_handle is not nullptr."); in UnloadDMServiceImplSo()
1171 dlclose(so_handle); in UnloadDMServiceImplSo()
1187 void *so_handle in IsDMServiceAdapterLoad() local
1222 void *so_handle = dlopen(LIB_DM_ADAPTER_NAME, RTLD_NOW | RTLD_NOLOAD); UnloadDMServiceAdapter() local
[all...]
/foundation/deviceprofile/device_info_manager/services/core/src/deviceprofilemanager/
H A Ddevice_profile_manager.cpp437 void *so_handle = dlopen(soName.c_str(), RTLD_NOW | RTLD_NOLOAD); in LoadDpSyncAdapter() local
438 if (so_handle == nullptr) { in LoadDpSyncAdapter()
439 so_handle = dlopen(soName.c_str(), RTLD_NOW); in LoadDpSyncAdapter()
441 if (so_handle == nullptr) { in LoadDpSyncAdapter()
446 auto func = (CreateDPSyncAdapterFuncPtr)dlsym(so_handle, "CreateDPSyncAdaptertObject"); in LoadDpSyncAdapter()
448 dlclose(so_handle); in LoadDpSyncAdapter()
454 dlclose(so_handle); in LoadDpSyncAdapter()
485 void *so_handle = dlopen(soPathName.c_str(), RTLD_NOW | RTLD_NOLOAD); in UnloadDpSyncAdapter() local
486 if (so_handle != nullptr) { in UnloadDpSyncAdapter()
487 HILOGI("dp sync adapter so_handle i in UnloadDpSyncAdapter()
[all...]

Completed in 6 milliseconds