Home
last modified time | relevance | path

Searched refs:bpf_testmod_struct_arg_2 (Results 1 – 2 of 2) sorted by relevance

/linux/tools/testing/selftests/bpf/progs/
H A Dtracing_struct.c11 struct bpf_testmod_struct_arg_2 { struct
30 struct bpf_testmod_struct_arg_2 arg; in BPF_PROG2() argument
45 int BPF_PROG2(test_struct_arg_1, struct bpf_testmod_struct_arg_2, a, int, b, int, c) in BPF_PROG2()
55 int BPF_PROG2(test_struct_arg_2, struct bpf_testmod_struct_arg_2, a, int, b, int, c, int, ret) in BPF_PROG2()
74 int BPF_PROG2(test_struct_arg_3, int, a, struct bpf_testmod_struct_arg_2, b, int, c)
84 int BPF_PROG2(test_struct_arg_4, int, a, struct bpf_testmod_struct_arg_2, b, int, c, int, ret)
91 int BPF_PROG2(test_struct_arg_5, int, a, int, b, struct bpf_testmod_struct_arg_2, c)
101 int BPF_PROG2(test_struct_arg_6, int, a, int, b, struct bpf_testmod_struct_arg_2, c, int, ret) in BPF_PROG2()
109 int, c, int, d, struct bpf_testmod_struct_arg_2, e) in BPF_PROG2()
122 int, c, int, d, struct bpf_testmod_struct_arg_2, in BPF_PROG2()
40 BPF_PROG2(test_struct_arg_2,struct bpf_testmod_struct_arg_2,a,int,b,int,c,int,ret) BPF_PROG2() argument
59 BPF_PROG2(test_struct_arg_3,int,a,struct bpf_testmod_struct_arg_2,b,int,c) BPF_PROG2() argument
69 BPF_PROG2(test_struct_arg_4,int,a,struct bpf_testmod_struct_arg_2,b,int,c,int,ret) BPF_PROG2() argument
76 BPF_PROG2(test_struct_arg_5,int,a,int,b,struct bpf_testmod_struct_arg_2,c) BPF_PROG2() argument
86 BPF_PROG2(test_struct_arg_6,int,a,int,b,struct bpf_testmod_struct_arg_2,c,int,ret) BPF_PROG2() argument
94 BPF_PROG2(test_struct_arg_7,struct bpf_testmod_struct_arg_1,a,int,b,int,c,int,d,struct bpf_testmod_struct_arg_2,e) BPF_PROG2() argument
107 BPF_PROG2(test_struct_arg_8,struct bpf_testmod_struct_arg_1,a,int,b,int,c,int,d,struct bpf_testmod_struct_arg_2,e,int,ret) BPF_PROG2() argument
[all...]
/linux/tools/testing/selftests/bpf/test_kmods/
H A Dbpf_testmod.c43 struct bpf_testmod_struct_arg_2 { struct
74 struct bpf_testmod_struct_arg_2 arg;
80 bpf_testmod_test_struct_arg_1(struct bpf_testmod_struct_arg_2 a, int b, int c) { in bpf_testmod_test_struct_arg_1()
86 bpf_testmod_test_struct_arg_2(int a, struct bpf_testmod_struct_arg_2 b, int c) { in bpf_testmod_test_struct_arg_2()
92 bpf_testmod_test_struct_arg_3(int a, int b, struct bpf_testmod_struct_arg_2 c) { in bpf_testmod_test_struct_arg_3()
99 int c, int d, struct bpf_testmod_struct_arg_2 e) { in bpf_testmod_test_struct_arg_4()
457 struct bpf_testmod_struct_arg_2 struct_arg2 = {2, 3}; in bpf_testmod_test_read()