Symbol: btf_type_vlen
include/linux/btf.h
250
i < btf_type_vlen(struct_type); \
include/linux/btf.h
255
i < btf_type_vlen(datasec_type); \
include/linux/btf.h
425
return btf_type_vlen(t);
kernel/bpf/bpf_lsm.c
96
if (btf_type_vlen(prog->aux->attach_func_proto) < 1 ||
kernel/bpf/bpf_struct_ops.c
208
nargs = btf_type_vlen(func_proto);
kernel/bpf/bpf_struct_ops.c
209
if (nargs != btf_type_vlen(stub_func_proto)) {
kernel/bpf/bpf_struct_ops.c
304
for (i = 0; i < btf_type_vlen(st_ops_desc->type); i++)
kernel/bpf/bpf_struct_ops.c
365
if (btf_type_vlen(t) > BPF_STRUCT_OPS_MAX_NR_MEMBERS) {
kernel/bpf/bpf_struct_ops.c
367
btf_type_vlen(t), st_ops->name);
kernel/bpf/bpf_struct_ops.c
381
arg_info = kzalloc_objs(*arg_info, btf_type_vlen(t));
kernel/bpf/btf.c
198
i < btf_type_vlen(struct_type); \
kernel/bpf/btf.c
203
i < btf_type_vlen(struct_type); \
kernel/bpf/btf.c
2379
if (btf_type_vlen(t)) {
kernel/bpf/btf.c
2712
if (btf_type_vlen(t)) {
kernel/bpf/btf.c
2967
if (btf_type_vlen(t)) {
kernel/bpf/btf.c
3053
if (btf_type_vlen(t)) {
kernel/bpf/btf.c
3292
meta_needed = btf_type_vlen(t) * sizeof(*member);
kernel/bpf/btf.c
3435
btf_verifier_log(env, "size=%u vlen=%u", t->size, btf_type_vlen(t));
kernel/bpf/btf.c
4447
nr_enums = btf_type_vlen(t);
kernel/bpf/btf.c
4499
btf_verifier_log(env, "size=%u vlen=%u", t->size, btf_type_vlen(t));
kernel/bpf/btf.c
4507
u32 i, nr_enums = btf_type_vlen(t);
kernel/bpf/btf.c
4555
nr_enums = btf_type_vlen(t);
kernel/bpf/btf.c
4610
u32 i, nr_enums = btf_type_vlen(t);
kernel/bpf/btf.c
4652
u32 meta_needed = btf_type_vlen(t) * sizeof(struct btf_param);
kernel/bpf/btf.c
4680
u16 nr_args = btf_type_vlen(t), i;
kernel/bpf/btf.c
4745
if (btf_type_vlen(t) > BTF_FUNC_GLOBAL) {
kernel/bpf/btf.c
4798
if (btf_type_vlen(t)) {
kernel/bpf/btf.c
4856
meta_needed = btf_type_vlen(t) * sizeof(*vsi);
kernel/bpf/btf.c
4964
btf_verifier_log(env, "size=%u vlen=%u", t->size, btf_type_vlen(t));
kernel/bpf/btf.c
5004
if (btf_type_vlen(t)) {
kernel/bpf/btf.c
5097
if (btf_type_vlen(t)) {
kernel/bpf/btf.c
5141
vlen = btf_type_vlen(next_type);
kernel/bpf/btf.c
5145
vlen = btf_type_vlen(next_type);
kernel/bpf/btf.c
5185
nr_args = btf_type_vlen(t);
kernel/bpf/btf.c
5286
nr_args = btf_type_vlen(proto_type);
kernel/bpf/btf.c
6538
nr_args = btf_type_vlen(func_proto);
kernel/bpf/btf.c
6813
nr_args = t ? btf_type_vlen(t) : MAX_BPF_FUNC_REG_ARGS;
kernel/bpf/btf.c
7064
vlen = btf_type_vlen(t);
kernel/bpf/btf.c
7496
nargs = btf_type_vlen(func);
kernel/bpf/btf.c
7578
nargs1 = btf_type_vlen(t1);
kernel/bpf/btf.c
7580
nargs2 = btf_type_vlen(t2);
kernel/bpf/btf.c
7840
nargs = btf_type_vlen(t);
kernel/bpf/btf.c
8553
if (btf_type_vlen(func) <= arg_idx)
kernel/bpf/btf.c
8586
nr_args = btf_type_vlen(func);
kernel/bpf/btf.c
9011
nr_args = btf_type_vlen(dtor_func_proto);
kernel/bpf/verifier.c
13366
nargs = btf_type_vlen(meta->func_proto);
kernel/bpf/verifier.c
14480
nargs = btf_type_vlen(meta.func_proto);
kernel/bpf/verifier.c
18385
cs->num_params = btf_type_vlen(meta.func_proto);
kernel/bpf/verifier.c
24088
int nr_args = btf_type_vlen(prog->aux->attach_func_proto);
kernel/bpf/verifier.c
24152
int nr_args = btf_type_vlen(prog->aux->attach_func_proto);
kernel/bpf/verifier.c
24860
if (member_idx >= btf_type_vlen(t)) {
kernel/trace/trace_btf.c
48
*nr = btf_type_vlen(func_proto);
net/bpf/bpf_dummy_struct_ops.c
100
for (u32 arg_no = 0; arg_no < btf_type_vlen(func_proto) ; ++arg_no) {
net/bpf/bpf_dummy_struct_ops.c
153
args = dummy_ops_init_args(kattr, btf_type_vlen(func_proto));