Lines Matching refs:out

14 	char out[256];
112 struct core_reloc_type_based_output *out = (void *)&data.out;
114 out->struct_exists = bpf_core_type_exists(struct a_struct);
115 out->complex_struct_exists = bpf_core_type_exists(struct a_complex_struct);
116 out->union_exists = bpf_core_type_exists(union a_union);
117 out->enum_exists = bpf_core_type_exists(enum an_enum);
118 out->typedef_named_struct_exists = bpf_core_type_exists(named_struct_typedef);
119 out->typedef_anon_struct_exists = bpf_core_type_exists(anon_struct_typedef);
120 out->typedef_struct_ptr_exists = bpf_core_type_exists(struct_ptr_typedef);
121 out->typedef_int_exists = bpf_core_type_exists(int_typedef);
122 out->typedef_enum_exists = bpf_core_type_exists(enum_typedef);
123 out->typedef_void_ptr_exists = bpf_core_type_exists(void_ptr_typedef);
124 out->typedef_restrict_ptr_exists = bpf_core_type_exists(restrict_ptr_typedef);
125 out->typedef_func_proto_exists = bpf_core_type_exists(func_proto_typedef);
126 out->typedef_arr_exists = bpf_core_type_exists(arr_typedef);
128 out->struct_matches = bpf_core_type_matches(struct a_struct);
129 out->complex_struct_matches = bpf_core_type_matches(struct a_complex_struct);
130 out->union_matches = bpf_core_type_matches(union a_union);
131 out->enum_matches = bpf_core_type_matches(enum an_enum);
132 out->typedef_named_struct_matches = bpf_core_type_matches(named_struct_typedef);
133 out->typedef_anon_struct_matches = bpf_core_type_matches(anon_struct_typedef);
134 out->typedef_struct_ptr_matches = bpf_core_type_matches(struct_ptr_typedef);
135 out->typedef_int_matches = bpf_core_type_matches(int_typedef);
136 out->typedef_enum_matches = bpf_core_type_matches(enum_typedef);
137 out->typedef_void_ptr_matches = bpf_core_type_matches(void_ptr_typedef);
138 out->typedef_restrict_ptr_matches = bpf_core_type_matches(restrict_ptr_typedef);
139 out->typedef_func_proto_matches = bpf_core_type_matches(func_proto_typedef);
140 out->typedef_arr_matches = bpf_core_type_matches(arr_typedef);
142 out->struct_sz = bpf_core_type_size(struct a_struct);
143 out->union_sz = bpf_core_type_size(union a_union);
144 out->enum_sz = bpf_core_type_size(enum an_enum);
145 out->typedef_named_struct_sz = bpf_core_type_size(named_struct_typedef);
146 out->typedef_anon_struct_sz = bpf_core_type_size(anon_struct_typedef);
147 out->typedef_struct_ptr_sz = bpf_core_type_size(struct_ptr_typedef);
148 out->typedef_int_sz = bpf_core_type_size(int_typedef);
149 out->typedef_enum_sz = bpf_core_type_size(enum_typedef);
150 out->typedef_void_ptr_sz = bpf_core_type_size(void_ptr_typedef);
151 out->typedef_func_proto_sz = bpf_core_type_size(func_proto_typedef);
152 out->typedef_arr_sz = bpf_core_type_size(arr_typedef);