Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for InheritHandle (0.19 sec)

  1. src/internal/syscall/windows/syscall_windows.go

    	FirstGatewayAddress    *IpAdapterGatewayAddress
    	/* more fields might be present here. */
    }
    
    type SecurityAttributes struct {
    	Length             uint16
    	SecurityDescriptor uintptr
    	InheritHandle      bool
    }
    
    type FILE_BASIC_INFO struct {
    	CreationTime   int64
    	LastAccessTime int64
    	LastWriteTime  int64
    	ChangedTime    int64
    	FileAttributes uint32
    
    	// Pad out to 8-byte alignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	OpenProcess(desiredAccess uint32, inheritHandle bool, processId uint32) (handle Handle, err error)
    //sys	ShellExecute(hwnd Handle, verb *uint16, file *uint16, args *uint16, cwd *uint16, showCmd int32) (err error) [failretval<=32] = shell32.ShellExecuteW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	var _p0 uint32
    	if inheritHandle {
    		_p0 = 1
    	}
    	r0, _, e1 := syscall.Syscall(procOpenProcess.Addr(), 3, uintptr(desiredAccess), uintptr(_p0), uintptr(processId))
    	handle = Handle(r0)
    	if handle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. src/syscall/types_windows.go

    	tv.Sec = int32(nsec / 1e9)
    	tv.Usec = int32(nsec % 1e9 / 1e3)
    	return
    }
    
    type SecurityAttributes struct {
    	Length             uint32
    	SecurityDescriptor uintptr
    	InheritHandle      uint32
    }
    
    type Overlapped struct {
    	Internal     uintptr
    	InternalHigh uintptr
    	Offset       uint32
    	OffsetHigh   uint32
    	HEvent       Handle
    }
    
    type FileNotifyInformation struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func OpenProcess(da uint32, inheritHandle bool, pid uint32) (handle Handle, err error) {
    	var _p0 uint32
    	if inheritHandle {
    		_p0 = 1
    	}
    	r0, _, e1 := Syscall(procOpenProcess.Addr(), 3, uintptr(da), uintptr(_p0), uintptr(pid))
    	handle = Handle(r0)
    	if handle == 0 {
    		err = errnoErr(e1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
  6. src/syscall/syscall_windows.go

    //sys	OpenProcess(da uint32, inheritHandle bool, pid uint32) (handle Handle, err error)
    //sys	TerminateProcess(handle Handle, exitcode uint32) (err error)
    //sys	GetExitCodeProcess(handle Handle, exitcode *uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    const (
    	SECURITY_STATIC_TRACKING  = 0
    	SECURITY_DYNAMIC_TRACKING = 1
    )
    
    type SecurityAttributes struct {
    	Length             uint32
    	SecurityDescriptor *SECURITY_DESCRIPTOR
    	InheritHandle      uint32
    }
    
    type SE_OBJECT_TYPE uint32
    
    // Constants for type SE_OBJECT_TYPE
    const (
    	SE_UNKNOWN_OBJECT_TYPE     = 0
    	SE_FILE_OBJECT             = 1
    	SE_SERVICE                 = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"S_IWUSR", Const, 0},
    		{"S_IXGRP", Const, 0},
    		{"S_IXOTH", Const, 0},
    		{"S_IXUSR", Const, 0},
    		{"S_LOGIN_SET", Const, 1},
    		{"SecurityAttributes", Type, 0},
    		{"SecurityAttributes.InheritHandle", Field, 0},
    		{"SecurityAttributes.Length", Field, 0},
    		{"SecurityAttributes.SecurityDescriptor", Field, 0},
    		{"Seek", Func, 0},
    		{"Select", Func, 0},
    		{"Sendfile", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg syscall (windows-386), type SSLExtraCertChainPolicyPara struct, Size uint32
    pkg syscall (windows-386), type SecurityAttributes struct
    pkg syscall (windows-386), type SecurityAttributes struct, InheritHandle uint32
    pkg syscall (windows-386), type SecurityAttributes struct, Length uint32
    pkg syscall (windows-386), type SecurityAttributes struct, SecurityDescriptor uintptr
    pkg syscall (windows-386), type Servent struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top