Home
last modified time | relevance | path

Searched refs:parent_db_id (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/tools/perf/util/
H A Dthread-stack.h65 u64 parent_db_id; member
78 int (*process)(struct call_return *cr, u64 *parent_db_id, void *data);
101 call_return_processor__new(int (*process)(struct call_return *cr, u64 *parent_db_id, void *data),
H A Ddb-export.c505 u64 *parent_db_id) in db_export__call_return() argument
516 if (parent_db_id) { in db_export__call_return()
517 if (!*parent_db_id) in db_export__call_return()
518 *parent_db_id = ++dbe->call_return_last_db_id; in db_export__call_return()
519 cr->parent_db_id = *parent_db_id; in db_export__call_return()
H A Ddb-export.h106 u64 *parent_db_id);
H A Dthread-stack.c309 u64 *parent_db_id; in thread_stack__call_return() local
333 parent_db_id = idx ? &(tse - 1)->db_id : NULL; in thread_stack__call_return()
335 return crp->process(&cr, parent_db_id, crp->data); in thread_stack__call_return()
754 call_return_processor__new(int (*process)(struct call_return *cr, u64 *parent_db_id, void *data), in call_return_processor__new() argument
/openbmc/linux/tools/perf/util/scripting-engines/
H A Dtrace-event-python.c1368 u64 parent_db_id, sym_db_id; in python_export_call_path() local
1370 parent_db_id = cp->parent ? cp->parent->db_id : 0; in python_export_call_path()
1376 tuple_set_d64(t, 1, parent_db_id); in python_export_call_path()
1407 tuple_set_d64(t, 11, cr->parent_db_id); in python_export_call_return()
1446 static int python_process_call_return(struct call_return *cr, u64 *parent_db_id, in python_process_call_return() argument
1451 return db_export__call_return(dbe, cr, parent_db_id); in python_process_call_return()