Lines Matching refs:pyelem

413 		PyObject *pyelem;  in python_process_callchain()  local
419 pyelem = PyDict_New(); in python_process_callchain()
420 if (!pyelem) in python_process_callchain()
424 pydict_set_item_string_decref(pyelem, "ip", in python_process_callchain()
440 pydict_set_item_string_decref(pyelem, "sym", pysym); in python_process_callchain()
446 pydict_set_item_string_decref(pyelem, "dso", in python_process_callchain()
451 PyList_Append(pylist, pyelem); in python_process_callchain()
452 Py_DECREF(pyelem); in python_process_callchain()
474 PyObject *pyelem; in python_process_brstack() local
478 pyelem = PyDict_New(); in python_process_brstack()
479 if (!pyelem) in python_process_brstack()
482 pydict_set_item_string_decref(pyelem, "from", in python_process_brstack()
484 pydict_set_item_string_decref(pyelem, "to", in python_process_brstack()
486 pydict_set_item_string_decref(pyelem, "mispred", in python_process_brstack()
488 pydict_set_item_string_decref(pyelem, "predicted", in python_process_brstack()
490 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstack()
492 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstack()
494 pydict_set_item_string_decref(pyelem, "cycles", in python_process_brstack()
500 pydict_set_item_string_decref(pyelem, "from_dsoname", in python_process_brstack()
506 pydict_set_item_string_decref(pyelem, "to_dsoname", in python_process_brstack()
509 PyList_Append(pylist, pyelem); in python_process_brstack()
510 Py_DECREF(pyelem); in python_process_brstack()
573 PyObject *pyelem; in python_process_brstacksym() local
575 pyelem = PyDict_New(); in python_process_brstacksym()
576 if (!pyelem) in python_process_brstacksym()
582 pydict_set_item_string_decref(pyelem, "from", in python_process_brstacksym()
588 pydict_set_item_string_decref(pyelem, "to", in python_process_brstacksym()
592 pydict_set_item_string_decref(pyelem, "pred", in python_process_brstacksym()
596 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
599 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
604 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
607 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
611 PyList_Append(pylist, pyelem); in python_process_brstacksym()
612 Py_DECREF(pyelem); in python_process_brstacksym()