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()
478 PyObject *pyelem; in python_process_brstack() local
482 pyelem = PyDict_New(); in python_process_brstack()
483 if (!pyelem) in python_process_brstack()
486 pydict_set_item_string_decref(pyelem, "from", in python_process_brstack()
488 pydict_set_item_string_decref(pyelem, "to", in python_process_brstack()
490 pydict_set_item_string_decref(pyelem, "mispred", in python_process_brstack()
492 pydict_set_item_string_decref(pyelem, "predicted", in python_process_brstack()
494 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstack()
496 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstack()
498 pydict_set_item_string_decref(pyelem, "cycles", in python_process_brstack()
504 pydict_set_item_string_decref(pyelem, "from_dsoname", in python_process_brstack()
510 pydict_set_item_string_decref(pyelem, "to_dsoname", in python_process_brstack()
513 PyList_Append(pylist, pyelem); in python_process_brstack()
514 Py_DECREF(pyelem); in python_process_brstack()
577 PyObject *pyelem; in python_process_brstacksym() local
579 pyelem = PyDict_New(); in python_process_brstacksym()
580 if (!pyelem) in python_process_brstacksym()
586 pydict_set_item_string_decref(pyelem, "from", in python_process_brstacksym()
592 pydict_set_item_string_decref(pyelem, "to", in python_process_brstacksym()
596 pydict_set_item_string_decref(pyelem, "pred", in python_process_brstacksym()
600 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
603 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
608 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
611 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
615 PyList_Append(pylist, pyelem); in python_process_brstacksym()
616 Py_DECREF(pyelem); in python_process_brstacksym()