Lines Matching refs:ent
62 PyObject *ent;
72 ent = Py_BuildValue("s", str);
73 rval = PyList_Append(pverlist, ent);
74 Py_DECREF(ent);
83 PyObject *ent;
99 if ((ent = Py_BuildValue("[s,O]", str, pverlist)) == NULL) {
102 rval = PyList_Append(pdep, ent);
103 Py_DECREF(ent);
114 PyObject *ent;
124 ent = Py_BuildValue("s", str);
125 rval = PyList_Append(pdef, ent);
126 Py_DECREF(ent);
247 PyObject *ent; \
249 if ((ent = Py_BuildValue(valstr, val)) == NULL) { \
252 rval = PyDict_SetItemString(pdict, key, ent); \
253 Py_DECREF(ent); \
320 PyObject *ent;
322 ent = Py_BuildValue("s", h->elfhash);
323 if (PyDict_SetItemString(pdict, "elfhash", ent) != 0) {
326 Py_CLEAR(ent);
340 PyObject *ent;
342 ent = Py_BuildValue("s", h->hash_sha512t_256);
343 if (PyList_Append(plist, ent) != 0) {
346 Py_DECREF(ent);
348 ent = Py_BuildValue("s", h->uhash_sha512t_256);
349 if (PyList_Append(plist, ent) != 0) {
352 Py_DECREF(ent);
356 PyObject *ent;
358 ent = Py_BuildValue("s", h->hash_sha256);
359 if (PyList_Append(plist, ent) != 0) {
362 Py_DECREF(ent);
364 ent = Py_BuildValue("s", h->uhash_sha256);
365 if (PyList_Append(plist, ent) != 0) {
368 Py_DECREF(ent);
412 PyObject *ent = NULL;
463 ent = Py_BuildValue("s", str);
464 if (PyDict_SetItemString(pdict, "def", ent) != 0) {
467 Py_CLEAR(ent);
477 ent = Py_BuildValue("s", str);
478 if (PyDict_SetItemString(pdict, "runpath", ent) != 0) {
481 Py_CLEAR(ent);
493 Py_CLEAR(ent);