Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for WSAGetOverlappedResult (0.64 sec)

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

    //sys	WSAGetOverlappedResult(h syscall.Handle, o *syscall.Overlapped, bytes *uint32, wait bool, flags *uint32) (err error) = ws2_32.WSAGetOverlappedResult
    
    func loadWSASendRecvMsg() error {
    	sendRecvMsgFunc.once.Do(func() {
    		var s syscall.Handle
    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/internal/syscall/windows/zsyscall_windows.go

    	procGetProfilesDirectoryW             = moduserenv.NewProc("GetProfilesDirectoryW")
    	procWSAGetOverlappedResult            = modws2_32.NewProc("WSAGetOverlappedResult")
    	procWSASocketW                        = modws2_32.NewProc("WSASocketW")
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/internal/poll/fd_windows.go

    		err = nil
    	default:
    		return 0, err
    	}
    	// Wait for our request to complete.
    	err = fd.pd.wait(int(o.mode), fd.isFile)
    	if err == nil {
    		err = windows.WSAGetOverlappedResult(fd.Sysfd, &o.o, &o.qty, false, &o.flags)
    		// All is good. Extract our IO results and return.
    		if err != nil {
    			// More data available. Return back the size of received data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	WSAEnumProtocols(protocols *int32, protocolBuffer *WSAProtocolInfo, bufferLength *uint32) (n int32, err error) [failretval==-1] = ws2_32.WSAEnumProtocolsW
    //sys	WSAGetOverlappedResult(h Handle, o *Overlapped, bytes *uint32, wait bool, flags *uint32) (err error) = ws2_32.WSAGetOverlappedResult
    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

    	procWSAEnumProtocolsW                                    = modws2_32.NewProc("WSAEnumProtocolsW")
    	procWSAGetOverlappedResult                               = modws2_32.NewProc("WSAGetOverlappedResult")
    	procWSAIoctl                                             = modws2_32.NewProc("WSAIoctl")
    	procWSALookupServiceBeginW                               = modws2_32.NewProc("WSALookupServiceBeginW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top