Lines Matching refs:callchain
402 if (!symbol_conf.use_callchain || !sample->callchain) in python_process_callchain()
835 PyObject *callchain) in get_perf_sample_dict() argument
887 pydict_set_item_string_decref(dict, "callchain", callchain); in get_perf_sample_dict()
937 PyObject *handler, *context, *t, *obj = NULL, *callchain; in python_process_tracepoint() local
991 callchain = python_process_callchain(sample, evsel, al); in python_process_tracepoint()
993 Py_INCREF(callchain); in python_process_tracepoint()
1001 PyTuple_SetItem(t, n++, callchain); in python_process_tracepoint()
1008 pydict_set_item_string_decref(dict, "common_callchain", callchain); in python_process_tracepoint()
1048 callchain); in python_process_tracepoint()
1051 Py_DECREF(callchain); in python_process_tracepoint()
1465 PyObject *handler, *t, *dict, *callchain; in python_process_general_event() local
1484 callchain = python_process_callchain(sample, evsel, al); in python_process_general_event()
1485 dict = get_perf_sample_dict(sample, evsel, al, addr_al, callchain); in python_process_general_event()