Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CancelIoEx (0.18 sec)

  1. src/internal/poll/fd_windows.go

    		default:
    			n, err = syscall.Read(fd.Sysfd, buf)
    			if fd.kind == kindPipe && err == syscall.ERROR_OPERATION_ABORTED {
    				// Close uses CancelIoEx to interrupt concurrent I/O for pipes.
    				// If the fd is a pipe and the Read was interrupted by CancelIoEx,
    				// we assume it is interrupted by Close.
    				err = ErrFileClosing
    			}
    		}
    		if err != nil {
    			n = 0
    		}
    	} else {
    		o := &fd.rop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_windows.go

    	procGetIfEntry                         = modiphlpapi.NewProc("GetIfEntry")
    	procCancelIo                           = modkernel32.NewProc("CancelIo")
    	procCancelIoEx                         = modkernel32.NewProc("CancelIoEx")
    	procCloseHandle                        = modkernel32.NewProc("CloseHandle")
    	procCreateDirectoryW                   = modkernel32.NewProc("CreateDirectoryW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    //sys	postQueuedCompletionStatus(cphandle Handle, qty uint32, key uintptr, overlapped *Overlapped) (err error) = PostQueuedCompletionStatus
    //sys	CancelIo(s Handle) (err error)
    //sys	CancelIoEx(s Handle, o *Overlapped) (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)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	PostQueuedCompletionStatus(cphandle Handle, qty uint32, key uintptr, overlapped *Overlapped) (err error)
    //sys	CancelIo(s Handle) (err error)
    //sys	CancelIoEx(s Handle, o *Overlapped) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procCancelIo                                             = modkernel32.NewProc("CancelIo")
    	procCancelIoEx                                           = modkernel32.NewProc("CancelIoEx")
    	procClearCommBreak                                       = modkernel32.NewProc("ClearCommBreak")
    	procClearCommError                                       = modkernel32.NewProc("ClearCommError")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CTRL_BREAK_EVENT", Const, 1},
    		{"CTRL_CLOSE_EVENT", Const, 14},
    		{"CTRL_C_EVENT", Const, 1},
    		{"CTRL_LOGOFF_EVENT", Const, 14},
    		{"CTRL_SHUTDOWN_EVENT", Const, 14},
    		{"CancelIo", Func, 0},
    		{"CancelIoEx", Func, 1},
    		{"CertAddCertificateContextToStore", Func, 0},
    		{"CertChainContext", Type, 0},
    		{"CertChainContext.ChainCount", Field, 0},
    		{"CertChainContext.Chains", Field, 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)
  7. api/go1.1.txt

    pkg syscall (windows-386), const WSADESCRIPTION_LEN = 256
    pkg syscall (windows-386), const WSASYS_STATUS_LEN = 128
    pkg syscall (windows-386), const X509_ASN_ENCODING = 1
    pkg syscall (windows-386), func CancelIoEx(Handle, *Overlapped) error
    pkg syscall (windows-386), func ConnectEx(Handle, Sockaddr, *uint8, uint32, *uint32, *Overlapped) error
    pkg syscall (windows-386), func FreeAddrInfoW(*AddrinfoW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top