Lines Matching refs:pyelem

443 		PyObject *pyelem;  in python_process_callchain()  local
449 pyelem = PyDict_New(); in python_process_callchain()
450 if (!pyelem) in python_process_callchain()
454 pydict_set_item_string_decref(pyelem, "ip", in python_process_callchain()
470 pydict_set_item_string_decref(pyelem, "sym", pysym); in python_process_callchain()
484 pyelem, "sym_off", in python_process_callchain()
489 pyelem, "sym_srcline", in python_process_callchain()
497 pydict_set_item_string_decref(pyelem, "dso", in python_process_callchain()
502 PyList_Append(pylist, pyelem); in python_process_callchain()
503 Py_DECREF(pyelem); in python_process_callchain()
526 PyObject *pyelem; in python_process_brstack() local
530 pyelem = PyDict_New(); in python_process_brstack()
531 if (!pyelem) in python_process_brstack()
534 pydict_set_item_string_decref(pyelem, "from", in python_process_brstack()
536 pydict_set_item_string_decref(pyelem, "to", in python_process_brstack()
538 pydict_set_item_string_decref(pyelem, "mispred", in python_process_brstack()
540 pydict_set_item_string_decref(pyelem, "predicted", in python_process_brstack()
542 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstack()
544 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstack()
546 pydict_set_item_string_decref(pyelem, "cycles", in python_process_brstack()
553 pydict_set_item_string_decref(pyelem, "from_dsoname", in python_process_brstack()
559 pydict_set_item_string_decref(pyelem, "to_dsoname", in python_process_brstack()
563 PyList_Append(pylist, pyelem); in python_process_brstack()
564 Py_DECREF(pyelem); in python_process_brstack()
615 PyObject *pyelem; in python_process_brstacksym() local
619 pyelem = PyDict_New(); in python_process_brstacksym()
620 if (!pyelem) in python_process_brstacksym()
626 pydict_set_item_string_decref(pyelem, "from", in python_process_brstacksym()
632 pydict_set_item_string_decref(pyelem, "to", in python_process_brstacksym()
636 pydict_set_item_string_decref(pyelem, "pred", in python_process_brstacksym()
640 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
643 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
648 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
651 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
655 PyList_Append(pylist, pyelem); in python_process_brstacksym()
656 Py_DECREF(pyelem); in python_process_brstacksym()