Searched refs:is_return (Results 1 – 5 of 5) sorted by relevance
/linux-6.3-rc2/samples/bpf/ |
A D | task_fd_query_user.c | 124 const char *name, __u64 offset, __u64 addr, bool is_return, in test_nondebug_fs_kuprobe_common() argument 142 if (is_return) in test_nondebug_fs_kuprobe_common() 174 __u64 offset, __u64 addr, bool is_return, in test_nondebug_fs_probe() argument 184 offset, addr, is_return, in test_nondebug_fs_probe() 191 __func__, name ? name : "", offset, addr, is_return); in test_nondebug_fs_probe() 195 if ((is_return && fd_type != expected_ret_fd_type) || in test_nondebug_fs_probe() 196 (!is_return && fd_type != expected_fd_type)) { in test_nondebug_fs_probe() 227 static int test_debug_fs_uprobe(char *binary_path, long offset, bool is_return) in test_debug_fs_uprobe() argument 247 is_return ? 'r' : 'p', event_type, event_alias, in test_debug_fs_uprobe() 288 if ((is_return && fd_type != BPF_FD_TYPE_URETPROBE) || in test_debug_fs_uprobe() [all …]
|
/linux-6.3-rc2/tools/testing/selftests/bpf/progs/ |
A D | kprobe_multi.c | 39 static void kprobe_multi_check(void *ctx, bool is_return) in kprobe_multi_check() argument 53 if (is_return) { in kprobe_multi_check() 126 static void kprobe_multi_testmod_check(void *ctx, bool is_return) in kprobe_multi_testmod_check() argument 133 if (is_return) { in kprobe_multi_testmod_check()
|
/linux-6.3-rc2/kernel/trace/ |
A D | trace_kprobe.c | 262 int nargs, bool is_return) in alloc_trace_kprobe() argument 284 if (is_return) in alloc_trace_kprobe() 736 bool is_return = false; in __trace_kprobe_create() local 749 is_return = true; in __trace_kprobe_create() 766 if (!is_return) { in __trace_kprobe_create() 812 is_return = true; in __trace_kprobe_create() 825 if (is_return) in __trace_kprobe_create() 852 is_return ? 'r' : 'p', addr); in __trace_kprobe_create() 859 argc - 2, is_return); in __trace_kprobe_create() 1688 bool is_return) in create_local_trace_kprobe() argument [all …]
|
A D | trace_uprobe.c | 32 #define SIZEOF_TRACE_ENTRY(is_return) \ argument 34 sizeof(unsigned long) * (is_return ? 2 : 1)) 36 #define DATAOF_TRACE_ENTRY(entry, is_return) \ argument 37 ((void*)(entry) + SIZEOF_TRACE_ENTRY(is_return)) 546 bool is_return = false; in __trace_uprobe_create() local 553 is_return = true; in __trace_uprobe_create() 629 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() 1580 unsigned long ref_ctr_offset, bool is_return) in create_local_trace_uprobe() argument [all …]
|
A D | trace_probe.h | 388 bool is_return); 393 unsigned long ref_ctr_offset, bool is_return);
|
Completed in 19 milliseconds