Lines Matching refs:pyDecRef
33 void pyDecRef(PyObject* pyObj) in pyDecRef() function
121 std::unique_ptr<PyObject, decltype(&pyDecRef)> modNamePtr(pName, &pyDecRef); in getPythonJSON()
148 std::unique_ptr<PyObject, decltype(&pyDecRef)> modPtr( in getPythonJSON()
149 pModule, &pyDecRef); in getPythonJSON()
152 std::unique_ptr<PyObject, decltype(&pyDecRef)> keyPtr(pKey, &pyDecRef); in getPythonJSON()
169 std::unique_ptr<PyObject, decltype(&pyDecRef)> argPtr( in getPythonJSON()
170 pArgs, &pyDecRef); in getPythonJSON()
184 std::unique_ptr<PyObject, decltype(&pyDecRef)> resPtr( in getPythonJSON()
185 pResult, &pyDecRef); in getPythonJSON()
194 std::unique_ptr<PyObject, decltype(&pyDecRef)> pyBytePtr( in getPythonJSON()
195 pBytes, &pyDecRef); in getPythonJSON()