Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for InternalHigh (0.44 sec)

  1. src/runtime/defs_windows.go

    	exceptionrecord      *exceptionrecord
    	exceptionaddress     uintptr
    	numberparameters     uint32
    	exceptioninformation [15]uintptr
    }
    
    type overlapped struct {
    	internal     uintptr
    	internalhigh uintptr
    	anon0        [8]byte
    	hevent       *byte
    }
    
    type memoryBasicInformation struct {
    	baseAddress       uintptr
    	allocationBase    uintptr
    	allocationProtect uint32
    	regionSize        uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    	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 {
    	NextEntryOffset uint32
    	Action          uint32
    	FileNameLength  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    }
    
    func NsecToTimeval(nsec int64) (tv Timeval) {
    	tv.Sec = int32(nsec / 1e9)
    	tv.Usec = int32(nsec % 1e9 / 1e3)
    	return
    }
    
    type Overlapped struct {
    	Internal     uintptr
    	InternalHigh uintptr
    	Offset       uint32
    	OffsetHigh   uint32
    	HEvent       Handle
    }
    
    type FileNotifyInformation struct {
    	NextEntryOffset uint32
    	Action          uint32
    	FileNameLength  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"OpenProcess", Func, 0},
    		{"OpenProcessToken", Func, 0},
    		{"Openat", Func, 0},
    		{"Overlapped", Type, 0},
    		{"Overlapped.HEvent", Field, 0},
    		{"Overlapped.Internal", Field, 0},
    		{"Overlapped.InternalHigh", Field, 0},
    		{"Overlapped.Offset", Field, 0},
    		{"Overlapped.OffsetHigh", Field, 0},
    		{"PACKET_ADD_MEMBERSHIP", Const, 0},
    		{"PACKET_BROADCAST", Const, 0},
    		{"PACKET_DROP_MEMBERSHIP", Const, 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)
  5. api/go1.txt

    pkg syscall (windows-386), type Overlapped struct, HEvent Handle
    pkg syscall (windows-386), type Overlapped struct, Internal uintptr
    pkg syscall (windows-386), type Overlapped struct, InternalHigh uintptr
    pkg syscall (windows-386), type Overlapped struct, Offset uint32
    pkg syscall (windows-386), type Overlapped struct, OffsetHigh uint32
    pkg syscall (windows-386), type Proc 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