HomeSort by relevance Sort by last modified time
    Searched refs:pgid (Results 26 - 50 of 67) sorted by null

12 3

  /external/syzkaller/vendor/golang.org/x/sys/unix/
zsyscall_dragonfly_amd64.go 771 func Getpgid(pid int) (pgid int, err error) {
773 pgid = int(r0)
1197 func Setpgid(pid int, pgid int) (err error) {
1198 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
zsyscall_netbsd_386.go 744 func Getpgid(pid int) (pgid int, err error) {
746 pgid = int(r0)
1189 func Setpgid(pid int, pgid int) (err error) {
1190 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
zsyscall_netbsd_amd64.go 744 func Getpgid(pid int) (pgid int, err error) {
746 pgid = int(r0)
1189 func Setpgid(pid int, pgid int) (err error) {
1190 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
zsyscall_netbsd_arm.go 744 func Getpgid(pid int) (pgid int, err error) {
746 pgid = int(r0)
1189 func Setpgid(pid int, pgid int) (err error) {
1190 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
zsyscall_openbsd_386.go 742 func Getpgid(pid int) (pgid int, err error) {
744 pgid = int(r0)
1213 func Setpgid(pid int, pgid int) (err error) {
1214 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
zsyscall_openbsd_amd64.go 742 func Getpgid(pid int) (pgid int, err error) {
744 pgid = int(r0)
1213 func Setpgid(pid int, pgid int) (err error) {
1214 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
zsyscall_openbsd_arm.go 742 func Getpgid(pid int) (pgid int, err error) {
744 pgid = int(r0)
1213 func Setpgid(pid int, pgid int) (err error) {
1214 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
syscall_solaris.go 613 //sysnb Getpgid(pid int) (pgid int, err error)
614 //sysnb Getpgrp() (pgid int, err error)
659 //sysnb Setpgid(pid int, pgid int) (err error)
zsyscall_darwin_386.go 867 func Getpgid(pid int) (pgid int, err error) {
869 pgid = int(r0)
    [all...]
zsyscall_darwin_amd64.go 867 func Getpgid(pid int) (pgid int, err error) {
869 pgid = int(r0)
    [all...]
zsyscall_darwin_arm.go 867 func Getpgid(pid int) (pgid int, err error) {
869 pgid = int(r0)
    [all...]
zsyscall_darwin_arm64.go 867 func Getpgid(pid int) (pgid int, err error) {
869 pgid = int(r0)
    [all...]
zsyscall_freebsd_386.go 1038 func Getpgid(pid int) (pgid int, err error) {
1040 pgid = int(r0)
    [all...]
zsyscall_freebsd_amd64.go 1038 func Getpgid(pid int) (pgid int, err error) {
1040 pgid = int(r0)
    [all...]
zsyscall_freebsd_arm.go 1038 func Getpgid(pid int) (pgid int, err error) {
1040 pgid = int(r0)
    [all...]
zsyscall_linux_386.go 614 func Getpgid(pid int) (pgid int, err error) {
616 pgid = int(r0)
1124 func Setpgid(pid int, pgid int) (err error) {
1125 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
zsyscall_linux_arm64.go 614 func Getpgid(pid int) (pgid int, err error) {
616 pgid = int(r0)
1124 func Setpgid(pid int, pgid int) (err error) {
1125 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
zsyscall_linux_s390x.go 614 func Getpgid(pid int) (pgid int, err error) {
616 pgid = int(r0)
1124 func Setpgid(pid int, pgid int) (err error) {
1125 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
zsysnum_openbsd_386.go 89 SYS_SETPGID = 82 // { int sys_setpgid(pid_t pid, int pgid); }
zsysnum_openbsd_amd64.go 88 SYS_SETPGID = 82 // { int sys_setpgid(pid_t pid, pid_t pgid); }
zsysnum_openbsd_arm.go 89 SYS_SETPGID = 82 // { int sys_setpgid(pid_t pid, pid_t pgid); }
zsyscall_linux_amd64.go 614 func Getpgid(pid int) (pgid int, err error) {
616 pgid = int(r0)
1124 func Setpgid(pid int, pgid int) (err error) {
1125 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
zsyscall_linux_arm.go 614 func Getpgid(pid int) (pgid int, err error) {
616 pgid = int(r0)
1124 func Setpgid(pid int, pgid int) (err error) {
1125 _, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    [all...]
  /external/python/cpython3/Modules/
posixmodule.c 6370 pid_t pgid = getpgid(pid); local
7656 pid_t pgid = tcgetpgrp(fd); local
    [all...]
  /external/compiler-rt/include/sanitizer/
linux_syscall_hooks.h 141 #define __sanitizer_syscall_pre_setpgid(pid, pgid) \
142 __sanitizer_syscall_pre_impl_setpgid((long)(pid), (long)(pgid))
143 #define __sanitizer_syscall_post_setpgid(res, pid, pgid) \
144 __sanitizer_syscall_post_impl_setpgid(res, (long)(pid), (long)(pgid))
    [all...]

Completed in 432 milliseconds

12 3