Lines Matching refs:pyelem

416 		PyObject *pyelem;  in python_process_callchain()  local
422 pyelem = PyDict_New(); in python_process_callchain()
423 if (!pyelem) in python_process_callchain()
427 pydict_set_item_string_decref(pyelem, "ip", in python_process_callchain()
443 pydict_set_item_string_decref(pyelem, "sym", pysym); in python_process_callchain()
457 pyelem, "sym_off", in python_process_callchain()
462 pyelem, "sym_srcline", in python_process_callchain()
470 pydict_set_item_string_decref(pyelem, "dso", in python_process_callchain()
475 PyList_Append(pylist, pyelem); in python_process_callchain()
476 Py_DECREF(pyelem); in python_process_callchain()
499 PyObject *pyelem; in python_process_brstack() local
503 pyelem = PyDict_New(); in python_process_brstack()
504 if (!pyelem) in python_process_brstack()
507 pydict_set_item_string_decref(pyelem, "from", in python_process_brstack()
509 pydict_set_item_string_decref(pyelem, "to", in python_process_brstack()
511 pydict_set_item_string_decref(pyelem, "mispred", in python_process_brstack()
513 pydict_set_item_string_decref(pyelem, "predicted", in python_process_brstack()
515 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstack()
517 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstack()
519 pydict_set_item_string_decref(pyelem, "cycles", in python_process_brstack()
526 pydict_set_item_string_decref(pyelem, "from_dsoname", in python_process_brstack()
532 pydict_set_item_string_decref(pyelem, "to_dsoname", in python_process_brstack()
536 PyList_Append(pylist, pyelem); in python_process_brstack()
537 Py_DECREF(pyelem); in python_process_brstack()
588 PyObject *pyelem; in python_process_brstacksym() local
592 pyelem = PyDict_New(); in python_process_brstacksym()
593 if (!pyelem) in python_process_brstacksym()
599 pydict_set_item_string_decref(pyelem, "from", in python_process_brstacksym()
605 pydict_set_item_string_decref(pyelem, "to", in python_process_brstacksym()
609 pydict_set_item_string_decref(pyelem, "pred", in python_process_brstacksym()
613 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
616 pydict_set_item_string_decref(pyelem, "in_tx", in python_process_brstacksym()
621 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
624 pydict_set_item_string_decref(pyelem, "abort", in python_process_brstacksym()
628 PyList_Append(pylist, pyelem); in python_process_brstacksym()
629 Py_DECREF(pyelem); in python_process_brstacksym()