Lines Matching full:call
3 * thread-stack.h: Synthesize a thread's stack using call / return events
24 * Call/Return flags.
26 * CALL_RETURN_NO_CALL: 'return' but no matching 'call'
27 * CALL_RETURN_NO_RETURN: 'call' but no matching 'return'
28 * CALL_RETURN_NON_CALL: a branch but not a 'call' to the start of a different
38 * struct call_return - paired call/return information.
39 * @thread: thread in which call/return occurred
40 * @comm: comm in which call/return occurred
41 * @cp: call path
42 * @call_time: timestamp of call (if known)
44 * @branch_count: number of branches seen between call and return
45 * @insn_count: approx. number of instructions between call and return
46 * @cyc_count: approx. number of cycles between call and return
47 * @call_ref: external reference to 'call' sample (e.g. db_id)
50 * @parent_db_id: id of parent call used for db-export
51 * @flags: Call/Return flags
70 * struct call_return_processor - provides a call-back to consume call-return
72 * @cpr: call path root
73 * @process: call-back that accepts call/return information
74 * @data: anonymous data for call-back