Home
last modified time | relevance | path

Searched refs:attach_type_str (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/tools/bpf/bpftool/
H A Dcgroup.c45 const char *attach_type_str; in parse_attach_type() local
49 attach_type_str = libbpf_bpf_attach_type_str(type); in parse_attach_type()
50 if (!attach_type_str) in parse_attach_type()
52 if (!strcmp(str, attach_type_str)) in parse_attach_type()
60 attach_type_str = bpf_attach_type_input_str(type); in parse_attach_type()
61 if (!attach_type_str) in parse_attach_type()
63 if (is_prefix(str, attach_type_str)) in parse_attach_type()
103 const char *attach_type_str; in show_bpf_prog() local
135 if (attach_type_str) in show_bpf_prog()
149 if (attach_type_str) in show_bpf_prog()
[all …]
H A Dlink.c144 const char *attach_type_str; in show_link_attach_type_json() local
146 attach_type_str = libbpf_bpf_attach_type_str(attach_type); in show_link_attach_type_json()
147 if (attach_type_str) in show_link_attach_type_json()
148 jsonw_string_field(wtr, "attach_type", attach_type_str); in show_link_attach_type_json()
522 const char *attach_type_str; in show_link_attach_type_plain() local
524 attach_type_str = libbpf_bpf_attach_type_str(attach_type); in show_link_attach_type_plain()
525 if (attach_type_str) in show_link_attach_type_plain()
526 printf("attach_type %s ", attach_type_str); in show_link_attach_type_plain()
H A Dprog.c74 const char *attach_type_str; in parse_attach_type() local
76 attach_type_str = libbpf_bpf_attach_type_str(type); in parse_attach_type()
77 if (!strcmp(str, attach_type_str)) in parse_attach_type()
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dlibbpf_str.c42 const char *attach_type_str; in test_libbpf_bpf_attach_type_str() local
49 attach_type_str = libbpf_bpf_attach_type_str(attach_type); in test_libbpf_bpf_attach_type_str()
50 ASSERT_OK_PTR(attach_type_str, attach_type_name); in test_libbpf_bpf_attach_type_str()
52 snprintf(buf, sizeof(buf), "BPF_%s", attach_type_str); in test_libbpf_bpf_attach_type_str()