Home
last modified time | relevance | path

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

/linux-6.12.1/tools/perf/util/
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),
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()
Ddb-export.h106 u64 *parent_db_id);
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
/linux-6.12.1/tools/perf/util/scripting-engines/
Dtrace-event-python.c1386 u64 parent_db_id, sym_db_id; in python_export_call_path() local
1388 parent_db_id = cp->parent ? cp->parent->db_id : 0; in python_export_call_path()
1394 tuple_set_d64(t, 1, parent_db_id); in python_export_call_path()
1425 tuple_set_d64(t, 11, cr->parent_db_id); in python_export_call_return()
1464 static int python_process_call_return(struct call_return *cr, u64 *parent_db_id, in python_process_call_return() argument
1469 return db_export__call_return(dbe, cr, parent_db_id); in python_process_call_return()