Home
last modified time | relevance | path

Searched refs:PT_FIRSTMACH (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/x86/include/
H A Dptrace.h43 #define PT_GETXMMREGS (PT_FIRSTMACH + 0)
44 #define PT_SETXMMREGS (PT_FIRSTMACH + 1)
47 #define PT_GETXSTATE_OLD (PT_FIRSTMACH + 2)
48 #define PT_SETXSTATE_OLD (PT_FIRSTMACH + 3)
50 #define PT_GETXSTATE_INFO (PT_FIRSTMACH + 4)
51 #define PT_GETXSTATE (PT_FIRSTMACH + 5)
52 #define PT_SETXSTATE (PT_FIRSTMACH + 6)
53 #define PT_GETFSBASE (PT_FIRSTMACH + 7)
54 #define PT_SETFSBASE (PT_FIRSTMACH + 8)
55 #define PT_GETGSBASE (PT_FIRSTMACH + 9)
[all …]
/freebsd/sys/powerpc/include/
H A Dptrace.h37 #define PT_GETVRREGS (PT_FIRSTMACH + 0)
38 #define PT_SETVRREGS (PT_FIRSTMACH + 1)
39 #define PT_GETVSRREGS (PT_FIRSTMACH + 2)
40 #define PT_SETVSRREGS (PT_FIRSTMACH + 3)
/freebsd/sys/arm64/include/
H A Dptrace.h7 #define PT_GETVFPREGS32 (PT_FIRSTMACH + 0)
8 #define PT_SETVFPREGS32 (PT_FIRSTMACH + 1)
/freebsd/sys/arm/include/
H A Dptrace.h18 #define PT_GETVFPREGS (PT_FIRSTMACH + 0)
19 #define PT_SETVFPREGS (PT_FIRSTMACH + 1)
/freebsd/sys/amd64/amd64/
H A Dptrace_machdep.c260 #define PT_I386_GETXMMREGS (PT_FIRSTMACH + 0)
261 #define PT_I386_SETXMMREGS (PT_FIRSTMACH + 1)
340 if (req == PT_FIRSTMACH + 0) in cpu_ptrace()
342 if (req == PT_FIRSTMACH + 1) in cpu_ptrace()
/freebsd/sys/sys/
H A Dptrace.h89 #define PT_FIRSTMACH 64 /* for machine-specific requests */ macro
/freebsd/sys/kern/
H A Dsys_process.c1676 if (req >= PT_FIRSTMACH) { in kern_ptrace()