Home
last modified time | relevance | path

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

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Duser_data_json.cpp261 PyObject *pName, *pModule, *eType, *eValue, *eTraceback, *pKey; in getPythonJSON() local
265 pName = PyUnicode_FromString( in getPythonJSON()
267 std::unique_ptr<PyObject, decltype(&pyDecRef)> modNamePtr(pName, &pyDecRef); in getPythonJSON()
268 pModule = PyImport_Import(pName); in getPythonJSON()
H A Dsrc.cpp129 PyObject *pName, *pModule, *eType, *eValue, *eTraceback; in getPythonJSON() local
132 pName = PyUnicode_FromString( in getPythonJSON()
134 std::unique_ptr<PyObject, decltype(&pyDecRef)> modNamePtr(pName, &pyDecRef); in getPythonJSON()
135 pModule = PyImport_Import(pName); in getPythonJSON()
/openbmc/dbus-sensors/src/
H A DIntrusionSensorMain.cpp269 const auto* pName = std::get_if<std::string>(&findName->second); in getNicNameInfo() local
270 if (pEthIndex != nullptr && pName != nullptr) in getNicNameInfo()
272 lanInfoMap[*pEthIndex] = *pName; in getNicNameInfo()
276 << *pName << "\n"; in getNicNameInfo()
/openbmc/phosphor-logging/extensions/openpower-pels/tools/
H A Dpeltool.cpp247 PyObject* pName = PyUnicode_FromString("sys"); in getPlugins() local
248 PyObject* pModule = PyImport_Import(pName); in getPlugins()
249 Py_XDECREF(pName); in getPlugins()