Home
last modified time | relevance | path

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

/ohos5.0/foundation/filemanagement/dfs_service/utils/load/src/
H A Dplugin_loader.cpp46 string pluginFilePath = ""; in GetPluginPath() local
50 pluginFilePath = tmpPath; in GetPluginPath()
54 return pluginFilePath; in GetPluginPath()
63 auto pluginFilePath = GetPluginPath(pluginFileName); in LoadCloudKitPlugin() local
64 if (!pluginFilePath.empty()) { in LoadCloudKitPlugin()
66 if (realpath(pluginFilePath.c_str(), resolvedPath) == nullptr) { in LoadCloudKitPlugin()
67 LOGE("realpath failed in line path: %s", pluginFilePath.c_str()); in LoadCloudKitPlugin()
70 cloudKitPulginHandle_ = dlopen(pluginFilePath.c_str(), RTLD_LAZY); in LoadCloudKitPlugin()
72 LOGE("dlopen failed, path:%{public}s", pluginFilePath.c_str()); in LoadCloudKitPlugin()
74 LOGI("succ to load plugin, path:%{public}s", pluginFilePath.c_str()); in LoadCloudKitPlugin()