Home
last modified time | relevance | path

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

/linux-6.1.9/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.c499 u64 *parent_db_id) in db_export__call_return() argument
510 if (parent_db_id) { in db_export__call_return()
511 if (!*parent_db_id) in db_export__call_return()
512 *parent_db_id = ++dbe->call_return_last_db_id; in db_export__call_return()
513 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()
753 call_return_processor__new(int (*process)(struct call_return *cr, u64 *parent_db_id, void *data), in call_return_processor__new() argument
/linux-6.1.9/tools/perf/util/scripting-engines/
Dtrace-event-python.c1333 u64 parent_db_id, sym_db_id; in python_export_call_path() local
1335 parent_db_id = cp->parent ? cp->parent->db_id : 0; in python_export_call_path()
1341 tuple_set_d64(t, 1, parent_db_id); in python_export_call_path()
1372 tuple_set_d64(t, 11, cr->parent_db_id); in python_export_call_return()
1411 static int python_process_call_return(struct call_return *cr, u64 *parent_db_id, in python_process_call_return() argument
1416 return db_export__call_return(dbe, cr, parent_db_id); in python_process_call_return()