Searched defs:SysProcAttr (Results 1 – 16 of 16) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/syscall/ |
D | exec_linux.go | 66 type SysProcAttr struct { struct 67 Chroot string // Chroot. 68 Credential *Credential // Credential. 72 Ptrace bool 73 Setsid bool // Create session. 76 Setpgid bool 81 Setctty bool 82 Noctty bool // Detach fd 0 from controlling terminal. 83 Ctty int // Controlling TTY fd. 89 Foreground bool [all …]
|
D | exec_freebsd.go | 12 type SysProcAttr struct { struct 13 Chroot string // Chroot. 14 Credential *Credential // Credential. 15 Ptrace bool // Enable tracing. 16 Setsid bool // Create session. 19 Setpgid bool 24 Setctty bool 25 Noctty bool // Detach fd 0 from controlling terminal 26 Ctty int // Controlling TTY fd 32 Foreground bool [all …]
|
D | exec_libc2.go | 15 type SysProcAttr struct { struct 16 Chroot string // Chroot. 17 Credential *Credential // Credential. 18 Ptrace bool // Enable tracing. 19 Setsid bool // Create session. 22 Setpgid bool 27 Setctty bool 28 Noctty bool // Detach fd 0 from controlling terminal 29 Ctty int // Controlling TTY fd 35 Foreground bool [all …]
|
D | exec_bsd.go | 14 type SysProcAttr struct { struct 15 Chroot string // Chroot. 16 Credential *Credential // Credential. 17 Ptrace bool // Enable tracing. 18 Setsid bool // Create session. 21 Setpgid bool 26 Setctty bool 27 Noctty bool // Detach fd 0 from controlling terminal 28 Ctty int // Controlling TTY fd 34 Foreground bool [all …]
|
D | exec_libc.go | 16 type SysProcAttr struct { struct 17 Chroot string // Chroot. 18 Credential *Credential // Credential. 19 Setsid bool // Create session. 22 Setpgid bool 27 Setctty bool 28 Noctty bool // Detach fd 0 from controlling terminal 29 Ctty int // Controlling TTY fd 35 Foreground bool 36 Pgid int // Child's process group ID if Setpgid. [all …]
|
D | exec_windows.go | 242 type SysProcAttr struct { struct 243 HideWindow bool 244 … non-empty, else the windows command line is built by escaping the arguments passed to StartProcess 245 CreationFlags uint32 246 … Token // if set, runs new process in the security context represented by the token 247 …curityAttributes // if set, applies these security attributes as the descriptor for the new process 248 … if set, applies these security attributes as the descriptor for the main thread of the new process 249 …s, not even the standard handles, contained in ProcAttr.Files, nor the ones contained in Additiona… 250 …ist of additional handles, already marked as inheritable, that will be inherited by the new process 251 …iven by this handle as its parent process, and AdditionalInheritedHandles, if set, should exist in…
|
D | exec_plan9.go | 355 type SysProcAttr struct { struct 356 Rfork int // additional flags to pass to rfork
|
D | syscall_js.go | 258 type SysProcAttr struct { struct
|
D | syscall_wasip1.go | 328 type SysProcAttr struct { struct
|
/aosp_15_r20/prebuilts/go/linux-x86/src/os/ |
D | pidfd_other.go | 11 func ensurePidfd(sysAttr *syscall.SysProcAttr) (*syscall.SysProcAttr, bool) { 15 func getPidfd(_ *syscall.SysProcAttr, _ bool) (uintptr, bool) {
|
D | pidfd_linux.go | 25 func ensurePidfd(sysAttr *syscall.SysProcAttr) (*syscall.SysProcAttr, bool) { 48 func getPidfd(sysAttr *syscall.SysProcAttr, needDup bool) (uintptr, bool) {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/sys/windows/ |
D | aliases.go | 12 type SysProcAttr = syscall.SysProcAttr talias
|
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/syscall/execenv/ |
D | execenv_default.go | 17 func Default(sys *syscall.SysProcAttr) ([]string, error) {
|
D | execenv_windows.go | 23 func Default(sys *syscall.SysProcAttr) (env []string, err error) {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/sys/unix/ |
D | aliases.go | 13 type SysProcAttr = syscall.SysProcAttr talias
|
/aosp_15_r20/prebuilts/go/linux-x86/src/os/exec/ |
D | exec.go | 219 SysProcAttr *syscall.SysProcAttr member
|