Home
last modified time | relevance | path

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

/openbmc/phosphor-logging/extensions/openpower-pels/
H A Duser_data_json.cpp298 PyObject* pDict = PyModule_GetDict(pModule); in getPythonJSON() local
299 Py_INCREF(pDict); in getPythonJSON()
300 if (!PyDict_Contains(pDict, pKey)) in getPythonJSON()
302 Py_DECREF(pDict); in getPythonJSON()
310 PyObject* pFunc = PyDict_GetItemString(pDict, funcToCall.c_str()); in getPythonJSON()
311 Py_DECREF(pDict); in getPythonJSON()
H A Dsrc.cpp166 PyObject* pDict = PyModule_GetDict(pModule); in getPythonJSON() local
167 Py_INCREF(pDict); in getPythonJSON()
168 if (!PyDict_Contains(pDict, pKey)) in getPythonJSON()
170 Py_DECREF(pDict); in getPythonJSON()
176 PyObject* pFunc = PyDict_GetItemString(pDict, funcToCall.c_str()); in getPythonJSON()
177 Py_DECREF(pDict); in getPythonJSON()
/openbmc/phosphor-logging/extensions/openpower-pels/tools/
H A Dpeltool.cpp250 PyObject* pDict = PyModule_GetDict(pModule); in getPlugins() local
252 PyObject* pResult = PyDict_GetItemString(pDict, "path"); in getPlugins()