Lines Matching refs:pyelem

440 		PyObject *pyelem;  in python_process_callchain()  local
446 pyelem = PyDict_New(); in python_process_callchain()
447 if (!pyelem) in python_process_callchain()
451 pydict_set_item_string_decref(pyelem, "ip", in python_process_callchain()
467 pydict_set_item_string_decref(pyelem, "sym", pysym); in python_process_callchain()
481 pyelem, "sym_off", in python_process_callchain()
486 pyelem, "sym_srcline", in python_process_callchain()
494 pydict_set_item_string_decref(pyelem, "dso", in python_process_callchain()
499 PyList_Append(pylist, pyelem); in python_process_callchain()
500 Py_DECREF(pyelem); in python_process_callchain()
523 PyObject *pyelem; in python_process_brstack() local
527 pyelem = PyDict_New(); in python_process_brstack()
528 if (!pyelem) in python_process_brstack()
531 pydict_set_item_string_decref(pyelem, "from", in python_process_brstack()
533 pydict_set_item_string_decref(pyelem, "to", in python_process_brstack()
535 pydict_set_item_string_decref(pyelem, "mispred", in python_process_brstack()
537 pydict_set_item_string_decref(pyelem, "predicted", in python_process_brstack()
539 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstack()
541 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstack()
543 pydict_set_item_string_decref(pyelem, "cycles", in python_process_brstack()
550 pydict_set_item_string_decref(pyelem, "from_dsoname", in python_process_brstack()
556 pydict_set_item_string_decref(pyelem, "to_dsoname", in python_process_brstack()
560 PyList_Append(pylist, pyelem); in python_process_brstack()
561 Py_DECREF(pyelem); in python_process_brstack()
612 PyObject *pyelem; in python_process_brstacksym() local
616 pyelem = PyDict_New(); in python_process_brstacksym()
617 if (!pyelem) in python_process_brstacksym()
623 pydict_set_item_string_decref(pyelem, "from", in python_process_brstacksym()
629 pydict_set_item_string_decref(pyelem, "to", in python_process_brstacksym()
633 pydict_set_item_string_decref(pyelem, "pred", in python_process_brstacksym()
637 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
640 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
645 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
648 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
652 PyList_Append(pylist, pyelem); in python_process_brstacksym()
653 Py_DECREF(pyelem); in python_process_brstacksym()