Searched refs:jsonw_printf (Results 1 – 9 of 9) sorted by relevance
| /tools/bpf/bpftool/ |
| A D | json_writer.c | 166 void jsonw_printf(json_writer_t *self, const char *fmt, ...) in jsonw_printf() function 206 jsonw_printf(self, "%s", val ? "true" : "false"); in jsonw_bool() 211 jsonw_printf(self, "null"); in jsonw_null() 216 jsonw_printf(self, fmt, num); in jsonw_float_fmt() 222 jsonw_printf(self, "%g", num); in jsonw_float() 228 jsonw_printf(self, "%hu", num); in jsonw_hu() 233 jsonw_printf(self, "%"PRIu64, num); in jsonw_uint() 238 jsonw_printf(self, "%llu", num); in jsonw_lluint() 243 jsonw_printf(self, "%"PRId64, num); in jsonw_int()
|
| A D | btf_dumper.c | 132 jsonw_printf(d->jw, "%lu", value); in btf_dumper_ptr() 299 jsonw_printf(jw, "0x%llx", lower_num); in btf_int128_print() 422 jsonw_printf(jw, "%u", *(__u32 *)data); in btf_dumper_int() 424 jsonw_printf(jw, "%hu", *(__u16 *)data); in btf_dumper_int() 426 jsonw_printf(jw, "%hhu", *(__u8 *)data); in btf_dumper_int() 435 jsonw_printf(jw, "%d", *(int *)data); in btf_dumper_int() 437 jsonw_printf(jw, "%hd", *(short *)data); in btf_dumper_int() 439 jsonw_printf(jw, "%hhd", *(char *)data); in btf_dumper_int() 451 jsonw_printf(jw, "\"\\u00%02hhx\"", in btf_dumper_int() 577 jsonw_printf(d->jw, "(unknown)"); in btf_dumper_do_type() [all …]
|
| A D | json_writer.h | 40 void __printf(2, 3) jsonw_printf(json_writer_t *self, const char *fmt, ...);
|
| A D | main.c | 149 jsonw_printf(json_wtr, "\"%s\"", BPFTOOL_VERSION); in do_version() 151 jsonw_printf(json_wtr, "\"%d.%d.%d\"", BPFTOOL_MAJOR_VERSION, in do_version() 155 jsonw_printf(json_wtr, "\"%u.%u\"", in do_version()
|
| A D | xlated_dumper.c | 278 jsonw_printf(json_wtr, "\"0x%02hhx\"", insn[i].code); in dump_xlated_json() 281 jsonw_printf(json_wtr, "\"0x%hhx\"", insn[i].src_reg); in dump_xlated_json() 284 jsonw_printf(json_wtr, "\"0x%hhx\"", insn[i].dst_reg); in dump_xlated_json()
|
| A D | jit_disasm.c | 374 jsonw_printf(json_wtr, "\"0x%x\"", pc); in disasm_print_insn() 399 jsonw_printf(json_wtr, "\"0x%02hhx\"", in disasm_print_insn()
|
| A D | common.c | 531 jsonw_printf(json_wtr, "%d", data[i]); in print_data_json() 541 jsonw_printf(json_wtr, "\"0x%02hhx\"", data[i]); in print_hex_data_json()
|
| A D | prog.c | 432 jsonw_printf(json_wtr, "\"" BPF_TAG_FMT "\"", in print_prog_header_json() 460 jsonw_printf(json_wtr, "%s", buf); in print_prog_json()
|
| A D | map.c | 465 jsonw_printf(wtr, "%u", info->map_flags); in show_map_header_json()
|
Completed in 23 milliseconds