Searched refs:ptype (Results 1 – 2 of 2) sorted by relevance
/tools/perf/util/ |
D | python.c | 95 #define member_def(type, member, ptype, help) \ argument 96 { #member, ptype, \ 100 #define sample_member_def(name, member, ptype, help) \ argument 101 { #name, ptype, \ 532 PyTypeObject *ptype; in pyrf_event__new() local 540 ptype = pyrf_event__type[event->header.type]; in pyrf_event__new() 541 pevent = PyObject_New(struct pyrf_event, ptype); in pyrf_event__new()
|
/tools/lib/bpf/ |
D | libbpf.c | 4462 #define BPF_PROG_SEC_IMPL(string, ptype, eatype, is_attachable, atype) \ argument 4463 { string, sizeof(string) - 1, ptype, eatype, is_attachable, atype } 4466 #define BPF_PROG_SEC(string, ptype) BPF_PROG_SEC_IMPL(string, ptype, 0, 0, 0) argument 4469 #define BPF_APROG_SEC(string, ptype, atype) \ argument 4470 BPF_PROG_SEC_IMPL(string, ptype, 0, 1, atype) 4473 #define BPF_EAPROG_SEC(string, ptype, eatype) \ argument 4474 BPF_PROG_SEC_IMPL(string, ptype, eatype, 1, eatype) 4479 #define BPF_APROG_COMPAT(string, ptype) BPF_PROG_SEC(string, ptype) argument
|