Lines Matching refs:pathKey
234 const char* pathKey = "default";
235 if (!GetNativeModulePath(moduleName, pathKey, "", isAppModule, nativeModulePath, NAPI_PATH_MAX)) {
248 if (isAppModule && IsExistedPath(pathKey)) {
250 loadPath = std::string(appLibPathMap_[pathKey]) + "/" + nativeModulePath[0];
864 const char* pathKey, const bool isAppModule, std::string& errInfo, uint32_t& errReason)
874 HILOG_DEBUG("path: %{public}s, pathKey: %{public}s, isAppModule: %{public}d", path, pathKey, isAppModule);
905 if (isAppModule && IsExistedPath(pathKey)) {
906 Dl_namespace ns = nsMap_[pathKey];
1223 bool NativeModuleManager::IsExistedPath(const char* pathKey) const
1225 HILOG_DEBUG("pathKey is '%{public}s'", pathKey);
1227 return pathKey && appLibPathMap_.find(pathKey) != appLibPathMap_.end();