Home
last modified time | relevance | path

Searched defs:user_regs_struct (Results 1 – 9 of 9) sorted by relevance

/third_party/musl/arch/x86_64/bits/
Duser.h11 struct user_regs_struct { struct
20 struct user_regs_struct regs; argument
/third_party/musl/arch/x32/bits/
Duser.h11 struct user_regs_struct { struct
20 struct user_regs_struct regs; argument
/third_party/musl/arch/m68k/bits/
Duser.h8 struct user_regs_struct { struct
18 struct user_regs_struct regs; argument
/third_party/musl/arch/i386/bits/
Duser.h14 struct user_regs_struct { struct
23 struct user_regs_struct regs; argument
/third_party/musl/arch/aarch64/bits/
Duser.h1 struct user_regs_struct { struct
2 unsigned long long regs[31];
3 unsigned long long sp;
4 unsigned long long pc;
5 unsigned long long pstate;
/third_party/musl/arch/microblaze/bits/
Duser.h5 struct user_regs_struct { struct
10 struct user_regs_struct regs; argument
/third_party/elfutils/backends/
Darm_initreg.c46 # define user_regs_struct user_pt_regs macro
Daarch64_initreg.c41 # define user_regs_struct user_pt_regs macro
/third_party/rust/crates/nix/src/sys/ptrace/
Dlinux.rs218 pub fn getregs(pid: Pid) -> Result<user_regs_struct> { in getregs()