Searched refs:kern_ptrace (Results 1 – 4 of 4) sorted by relevance
| /f-stack/freebsd/amd64/linux/ |
| H A D | linux_ptrace.c | 313 error = kern_ptrace(td, PT_READ_I, pid, addr, 0); in linux_ptrace_peek() 424 error = kern_ptrace(td, PT_GETREGS, pid, &b_reg, 0); in linux_ptrace_getregs() 466 error = kern_ptrace(td, PT_SETREGS, pid, &b_reg, 0); in linux_ptrace_setregs() 488 error = kern_ptrace(td, PT_GETREGS, pid, &b_reg, 0); in linux_ptrace_getregset_prstatus() 580 error = kern_ptrace(td, PT_TRACE_ME, 0, 0, 0); in linux_ptrace() 604 error = kern_ptrace(td, PT_WRITE_D, pid, in linux_ptrace() 617 error = kern_ptrace(td, PT_KILL, pid, addr, uap->data); in linux_ptrace() 623 error = kern_ptrace(td, PT_STEP, pid, (void *)1, sig); in linux_ptrace() 632 error = kern_ptrace(td, PT_ATTACH, pid, addr, uap->data); in linux_ptrace() 638 error = kern_ptrace(td, PT_DETACH, pid, (void *)1, sig); in linux_ptrace() [all …]
|
| /f-stack/freebsd/i386/linux/ |
| H A D | linux_ptrace.c | 266 error = kern_ptrace(td, req, pid, addr, uap->data); in linux_ptrace() 272 error = kern_ptrace(td, req, pid, addr, 0); in linux_ptrace() 280 error = kern_ptrace(td, PT_DETACH, pid, (void *)1, in linux_ptrace() 285 error = kern_ptrace(td, req, pid, (void *)1, in linux_ptrace() 289 error = kern_ptrace(td, PT_ATTACH, pid, addr, uap->data); in linux_ptrace() 293 error = kern_ptrace(td, PT_GETREGS, pid, &u.bsd_reg, 0); in linux_ptrace() 305 error = kern_ptrace(td, PT_SETREGS, pid, &u.bsd_reg, 0); in linux_ptrace() 322 error = kern_ptrace(td, PT_SETFPREGS, pid, in linux_ptrace() 420 error = kern_ptrace(td, PT_GETREGS, pid, &u.bsd_reg, 0); in linux_ptrace() 435 error = kern_ptrace(td, PT_SETREGS, pid, &u.bsd_reg, 0); in linux_ptrace() [all …]
|
| /f-stack/freebsd/kern/ |
| H A D | sys_process.c | 529 error = kern_ptrace(td, uap->req, uap->pid, addr, uap->data); in sys_ptrace() 605 kern_ptrace(struct thread *td, int req, pid_t pid, void *addr, int data) in kern_ptrace() function
|
| /f-stack/freebsd/sys/ |
| H A D | syscallsubr.h | 242 int kern_ptrace(struct thread *td, int req, pid_t pid, void *addr,
|