Home
last modified time | relevance | path

Searched refs:soPathName (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/distributedhardware/device_manager/services/implementation/src/config/
H A Ddm_config_manager.cpp142 std::string soPathName = (iter->second).soName; in ~DmConfigManager() local
143 if ((soPathName.length() == 0) || (soPathName.length() > PATH_MAX)) { in ~DmConfigManager()
147 so_handle = dlopen(soPathName.c_str(), RTLD_NOW | RTLD_NOLOAD); in ~DmConfigManager()
154 std::string soPathName = (iter->second).soName; in ~DmConfigManager() local
155 if ((soPathName.length() == 0) || (soPathName.length() > PATH_MAX)) { in ~DmConfigManager()
159 so_handle = dlopen(soPathName.c_str(), RTLD_NOW | RTLD_NOLOAD); in ~DmConfigManager()
188 std::string soPathName = (soInfoIter->second).soName; in GetCryptoAdapter() local
189 if ((soPathName.length() == 0) || (soPathName.length() > PATH_MAX)) { in GetCryptoAdapter()
193 so_handle = dlopen(soPathName.c_str(), RTLD_NOW | RTLD_NODELETE); in GetCryptoAdapter()
221 std::string soPathName = (iter->second).soName; in GetAuthAdapter() local
[all …]
/ohos5.0/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/all_connect/
H A Dall_connect_manager.cpp150 std::string soPathName = std::string(ALL_CONNECT_SO_PATH) + std::string(ALL_CONNECT_SO_NAME); in GetAllConnectSoLoad() local
151 if (soPathName.empty() || (soPathName.length() > PATH_MAX) || in GetAllConnectSoLoad()
152 (realpath(soPathName.c_str(), path) == nullptr)) { in GetAllConnectSoLoad()
153 LOGE("all connect so load failed, soPath=%{public}s not exist.", soPathName.c_str()); in GetAllConnectSoLoad()
/ohos5.0/foundation/deviceprofile/device_info_manager/services/core/src/deviceprofilemanager/
H A Ddevice_profile_manager.cpp480 std::string soPathName = std::string(LIB_DP_ADAPTER_NAME); in UnloadDpSyncAdapter() local
481 if ((soPathName.length() == 0) || (soPathName.length() > PATH_MAX)) { in UnloadDpSyncAdapter()
482 HILOGE("File %{public}s canonicalization failed", soPathName.c_str()); in UnloadDpSyncAdapter()
485 void *so_handle = dlopen(soPathName.c_str(), RTLD_NOW | RTLD_NOLOAD); in UnloadDpSyncAdapter()