Home
last modified time | relevance | path

Searched defs:SysProcAttr (Results 1 – 16 of 16) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/syscall/
Dexec_linux.go66 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 …]
Dexec_freebsd.go12 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 …]
Dexec_libc2.go15 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 …]
Dexec_bsd.go14 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 …]
Dexec_libc.go16 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 …]
Dexec_windows.go242 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…
Dexec_plan9.go355 type SysProcAttr struct { struct
356 Rfork int // additional flags to pass to rfork
Dsyscall_js.go258 type SysProcAttr struct { struct
Dsyscall_wasip1.go328 type SysProcAttr struct { struct
/aosp_15_r20/prebuilts/go/linux-x86/src/os/
Dpidfd_other.go11 func ensurePidfd(sysAttr *syscall.SysProcAttr) (*syscall.SysProcAttr, bool) {
15 func getPidfd(_ *syscall.SysProcAttr, _ bool) (uintptr, bool) {
Dpidfd_linux.go25 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/
Daliases.go12 type SysProcAttr = syscall.SysProcAttr talias
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/syscall/execenv/
Dexecenv_default.go17 func Default(sys *syscall.SysProcAttr) ([]string, error) {
Dexecenv_windows.go23 func Default(sys *syscall.SysProcAttr) (env []string, err error) {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/sys/unix/
Daliases.go13 type SysProcAttr = syscall.SysProcAttr talias
/aosp_15_r20/prebuilts/go/linux-x86/src/os/exec/
Dexec.go219 SysProcAttr *syscall.SysProcAttr member