Lines Matching refs:pyelem

417 		PyObject *pyelem;  in python_process_callchain()  local
423 pyelem = PyDict_New(); in python_process_callchain()
424 if (!pyelem) in python_process_callchain()
428 pydict_set_item_string_decref(pyelem, "ip", in python_process_callchain()
444 pydict_set_item_string_decref(pyelem, "sym", pysym); in python_process_callchain()
450 pydict_set_item_string_decref(pyelem, "dso", in python_process_callchain()
455 PyList_Append(pylist, pyelem); in python_process_callchain()
456 Py_DECREF(pyelem); in python_process_callchain()
479 PyObject *pyelem; in python_process_brstack() local
483 pyelem = PyDict_New(); in python_process_brstack()
484 if (!pyelem) in python_process_brstack()
487 pydict_set_item_string_decref(pyelem, "from", in python_process_brstack()
489 pydict_set_item_string_decref(pyelem, "to", in python_process_brstack()
491 pydict_set_item_string_decref(pyelem, "mispred", in python_process_brstack()
493 pydict_set_item_string_decref(pyelem, "predicted", in python_process_brstack()
495 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstack()
497 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstack()
499 pydict_set_item_string_decref(pyelem, "cycles", in python_process_brstack()
505 pydict_set_item_string_decref(pyelem, "from_dsoname", in python_process_brstack()
511 pydict_set_item_string_decref(pyelem, "to_dsoname", in python_process_brstack()
514 PyList_Append(pylist, pyelem); in python_process_brstack()
515 Py_DECREF(pyelem); in python_process_brstack()
579 PyObject *pyelem; in python_process_brstacksym() local
581 pyelem = PyDict_New(); in python_process_brstacksym()
582 if (!pyelem) in python_process_brstacksym()
588 pydict_set_item_string_decref(pyelem, "from", in python_process_brstacksym()
594 pydict_set_item_string_decref(pyelem, "to", in python_process_brstacksym()
598 pydict_set_item_string_decref(pyelem, "pred", in python_process_brstacksym()
602 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
605 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
610 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
613 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
617 PyList_Append(pylist, pyelem); in python_process_brstacksym()
618 Py_DECREF(pyelem); in python_process_brstacksym()