Lines Matching refs:callchain
404 if (!symbol_conf.use_callchain || !sample->callchain) in python_process_callchain()
779 PyObject *callchain) in get_perf_sample_dict() argument
824 pydict_set_item_string_decref(dict, "callchain", callchain); in get_perf_sample_dict()
863 PyObject *handler, *context, *t, *obj = NULL, *callchain; in python_process_tracepoint() local
913 callchain = python_process_callchain(sample, evsel, al); in python_process_tracepoint()
915 Py_INCREF(callchain); in python_process_tracepoint()
923 PyTuple_SetItem(t, n++, callchain); in python_process_tracepoint()
930 pydict_set_item_string_decref(dict, "common_callchain", callchain); in python_process_tracepoint()
968 callchain); in python_process_tracepoint()
971 Py_DECREF(callchain); in python_process_tracepoint()
1371 PyObject *handler, *t, *dict, *callchain; in python_process_general_event() local
1390 callchain = python_process_callchain(sample, evsel, al); in python_process_general_event()
1391 dict = get_perf_sample_dict(sample, evsel, al, addr_al, callchain); in python_process_general_event()