Lines Matching refs:pyelem

430 		PyObject *pyelem;  in python_process_callchain()  local
436 pyelem = PyDict_New(); in python_process_callchain()
437 if (!pyelem) in python_process_callchain()
441 pydict_set_item_string_decref(pyelem, "ip", in python_process_callchain()
457 pydict_set_item_string_decref(pyelem, "sym", pysym); in python_process_callchain()
469 pyelem, "sym_off", in python_process_callchain()
474 pyelem, "sym_srcline", in python_process_callchain()
482 pydict_set_item_string_decref(pyelem, "dso", in python_process_callchain()
487 PyList_Append(pylist, pyelem); in python_process_callchain()
488 Py_DECREF(pyelem); in python_process_callchain()
511 PyObject *pyelem; in python_process_brstack() local
515 pyelem = PyDict_New(); in python_process_brstack()
516 if (!pyelem) in python_process_brstack()
519 pydict_set_item_string_decref(pyelem, "from", in python_process_brstack()
521 pydict_set_item_string_decref(pyelem, "to", in python_process_brstack()
523 pydict_set_item_string_decref(pyelem, "mispred", in python_process_brstack()
525 pydict_set_item_string_decref(pyelem, "predicted", in python_process_brstack()
527 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstack()
529 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstack()
531 pydict_set_item_string_decref(pyelem, "cycles", in python_process_brstack()
537 pydict_set_item_string_decref(pyelem, "from_dsoname", in python_process_brstack()
543 pydict_set_item_string_decref(pyelem, "to_dsoname", in python_process_brstack()
546 PyList_Append(pylist, pyelem); in python_process_brstack()
547 Py_DECREF(pyelem); in python_process_brstack()
599 PyObject *pyelem; in python_process_brstacksym() local
601 pyelem = PyDict_New(); in python_process_brstacksym()
602 if (!pyelem) in python_process_brstacksym()
608 pydict_set_item_string_decref(pyelem, "from", in python_process_brstacksym()
614 pydict_set_item_string_decref(pyelem, "to", in python_process_brstacksym()
618 pydict_set_item_string_decref(pyelem, "pred", in python_process_brstacksym()
622 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
625 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
630 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
633 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
637 PyList_Append(pylist, pyelem); in python_process_brstacksym()
638 Py_DECREF(pyelem); in python_process_brstacksym()