Lines Matching refs:callchain
404 if (!symbol_conf.use_callchain || !sample->callchain) in python_process_callchain()
732 PyObject *callchain) in get_perf_sample_dict() argument
784 pydict_set_item_string_decref(dict, "callchain", callchain); in get_perf_sample_dict()
802 PyObject *handler, *context, *t, *obj = NULL, *callchain; in python_process_tracepoint() local
855 callchain = python_process_callchain(sample, evsel, al); in python_process_tracepoint()
857 Py_INCREF(callchain); in python_process_tracepoint()
865 PyTuple_SetItem(t, n++, callchain); in python_process_tracepoint()
872 pydict_set_item_string_decref(dict, "common_callchain", callchain); in python_process_tracepoint()
910 callchain); in python_process_tracepoint()
913 Py_DECREF(callchain); in python_process_tracepoint()
1302 PyObject *handler, *t, *dict, *callchain; in python_process_general_event() local
1321 callchain = python_process_callchain(sample, evsel, al); in python_process_general_event()
1322 dict = get_perf_sample_dict(sample, evsel, al, callchain); in python_process_general_event()