Lines Matching refs:out

14 	char out[256];  member
86 struct core_reloc_type_id_output *out = (void *)&data.out; in test_core_type_id() local
88 out->local_anon_struct = bpf_core_type_id_local(struct { int marker_field; }); in test_core_type_id()
89 out->local_anon_union = bpf_core_type_id_local(union { int marker_field; }); in test_core_type_id()
90 out->local_anon_enum = bpf_core_type_id_local(enum { MARKER_ENUM_VAL = 123 }); in test_core_type_id()
91 out->local_anon_func_proto_ptr = bpf_core_type_id_local(_Bool(*)(int)); in test_core_type_id()
92 out->local_anon_void_ptr = bpf_core_type_id_local(void *); in test_core_type_id()
93 out->local_anon_arr = bpf_core_type_id_local(_Bool[47]); in test_core_type_id()
95 out->local_struct = bpf_core_type_id_local(struct a_struct); in test_core_type_id()
96 out->local_union = bpf_core_type_id_local(union a_union); in test_core_type_id()
97 out->local_enum = bpf_core_type_id_local(enum an_enum); in test_core_type_id()
98 out->local_int = bpf_core_type_id_local(int); in test_core_type_id()
99 out->local_struct_typedef = bpf_core_type_id_local(named_struct_typedef); in test_core_type_id()
100 out->local_func_proto_typedef = bpf_core_type_id_local(func_proto_typedef); in test_core_type_id()
101 out->local_arr_typedef = bpf_core_type_id_local(arr_typedef); in test_core_type_id()
103 out->targ_struct = bpf_core_type_id_kernel(struct a_struct); in test_core_type_id()
104 out->targ_union = bpf_core_type_id_kernel(union a_union); in test_core_type_id()
105 out->targ_enum = bpf_core_type_id_kernel(enum an_enum); in test_core_type_id()
106 out->targ_int = bpf_core_type_id_kernel(int); in test_core_type_id()
107 out->targ_struct_typedef = bpf_core_type_id_kernel(named_struct_typedef); in test_core_type_id()
108 out->targ_func_proto_typedef = bpf_core_type_id_kernel(func_proto_typedef); in test_core_type_id()
109 out->targ_arr_typedef = bpf_core_type_id_kernel(arr_typedef); in test_core_type_id()