decl_stack         75 tools/lib/bpf/btf_dump.c 	__u32 *decl_stack;
decl_stack        171 tools/lib/bpf/btf_dump.c 	free(d->decl_stack);
decl_stack        571 tools/lib/bpf/btf_dump.c 				     struct id_stack *decl_stack,
decl_stack        989 tools/lib/bpf/btf_dump.c 		new_stack = realloc(d->decl_stack,
decl_stack        993 tools/lib/bpf/btf_dump.c 		d->decl_stack = new_stack;
decl_stack        997 tools/lib/bpf/btf_dump.c 	d->decl_stack[d->decl_stack_cnt++] = id;
decl_stack       1046 tools/lib/bpf/btf_dump.c 	struct id_stack decl_stack;
decl_stack       1104 tools/lib/bpf/btf_dump.c 	decl_stack.ids = d->decl_stack + stack_start;
decl_stack       1105 tools/lib/bpf/btf_dump.c 	decl_stack.cnt = d->decl_stack_cnt - stack_start;
decl_stack       1106 tools/lib/bpf/btf_dump.c 	btf_dump_emit_type_chain(d, &decl_stack, fname, lvl);
decl_stack       1118 tools/lib/bpf/btf_dump.c static void btf_dump_emit_mods(struct btf_dump *d, struct id_stack *decl_stack)
decl_stack       1123 tools/lib/bpf/btf_dump.c 	while (decl_stack->cnt) {
decl_stack       1124 tools/lib/bpf/btf_dump.c 		id = decl_stack->ids[decl_stack->cnt - 1];
decl_stack       1140 tools/lib/bpf/btf_dump.c 		decl_stack->cnt--;