Home
last modified time | relevance | path

Searched refs:PT_REGS_PARM3 (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.15/tools/lib/bpf/
Dbpf_tracing.h65 #define PT_REGS_PARM3(x) ((x)->dx) macro
91 #define PT_REGS_PARM3(x) ((x)->ecx) macro
115 #define PT_REGS_PARM3(x) ((x)->rdx) macro
145 #define PT_REGS_PARM3(x) (((PT_REGS_S390 *)(x))->gprs[4]) macro
170 #define PT_REGS_PARM3(x) ((x)->uregs[2]) macro
197 #define PT_REGS_PARM3(x) (((PT_REGS_ARM64 *)(x))->regs[2]) macro
222 #define PT_REGS_PARM3(x) ((x)->regs[6]) macro
246 #define PT_REGS_PARM3(x) ((x)->gpr[5]) macro
266 #define PT_REGS_PARM3(x) ((x)->u_regs[UREG_I2]) macro
311 #define PT_REGS_PARM3(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) macro
[all …]
/Linux-v5.15/samples/bpf/
Dtracex2_kern.c84 long write_size = PT_REGS_PARM3(ctx); in SYSCALL()