Searched refs:is_return (Results 1 – 4 of 4) sorted by relevance
/linux/samples/bpf/ |
A D | task_fd_query_user.c | 125 const char *name, __u64 offset, __u64 addr, bool is_return, in test_nondebug_fs_kuprobe_common() argument 143 if (is_return) in test_nondebug_fs_kuprobe_common() 175 __u64 offset, __u64 addr, bool is_return, in test_nondebug_fs_probe() argument 185 offset, addr, is_return, in test_nondebug_fs_probe() 192 __func__, name ? name : "", offset, addr, is_return); in test_nondebug_fs_probe() 196 if ((is_return && fd_type != expected_ret_fd_type) || in test_nondebug_fs_probe() 197 (!is_return && fd_type != expected_fd_type)) { in test_nondebug_fs_probe() 228 static int test_debug_fs_uprobe(char *binary_path, long offset, bool is_return) in test_debug_fs_uprobe() argument 248 is_return ? 'r' : 'p', event_type, event_alias, in test_debug_fs_uprobe() 289 if ((is_return && fd_type != BPF_FD_TYPE_URETPROBE) || in test_debug_fs_uprobe() [all …]
|
/linux/kernel/trace/ |
A D | trace_kprobe.c | 259 int nargs, bool is_return) in alloc_trace_kprobe() argument 281 if (is_return) in alloc_trace_kprobe() 738 bool is_return = false; in __trace_kprobe_create() local 750 is_return = true; in __trace_kprobe_create() 767 if (!is_return) { in __trace_kprobe_create() 813 is_return = true; in __trace_kprobe_create() 826 if (is_return) in __trace_kprobe_create() 851 is_return ? 'r' : 'p', addr); in __trace_kprobe_create() 858 argc - 2, is_return); in __trace_kprobe_create() 1799 bool is_return) in create_local_trace_kprobe() argument [all …]
|
A D | trace_uprobe.c | 30 #define SIZEOF_TRACE_ENTRY(is_return) \ argument 32 sizeof(unsigned long) * (is_return ? 2 : 1)) 34 #define DATAOF_TRACE_ENTRY(entry, is_return) \ argument 35 ((void*)(entry) + SIZEOF_TRACE_ENTRY(is_return)) 547 bool is_return = false; in __trace_uprobe_create() local 555 is_return = true; in __trace_uprobe_create() 631 is_return = true; in __trace_uprobe_create() 675 tu = alloc_trace_uprobe(group, event, argc, is_return); in __trace_uprobe_create() 691 is_return ? TPARG_FL_RETURN : 0); in __trace_uprobe_create() 1587 unsigned long ref_ctr_offset, bool is_return) in create_local_trace_uprobe() argument [all …]
|
A D | trace_probe.h | 380 bool is_return); 385 unsigned long ref_ctr_offset, bool is_return);
|
Completed in 12 milliseconds