Home
last modified time | relevance | path

Searched defs:user_regs_struct (Results 1 – 10 of 10) 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/loongarch64/bits/
Duser.h4 struct user_regs_struct { struct
5 unsigned long regs[32];
6 unsigned long orig_a0;
7 unsigned long csr_era;
8 unsigned long csr_badv;
9 unsigned long reserved[10];
/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()