HomeSort by relevance Sort by last modified time
    Searched defs:ConnectEx (Results 1 - 7 of 7) sorted by null

  /prebuilts/go/darwin-x86/src/net/internal/socktest/
sys_windows.go 135 // ConnectEx wraps syscall.ConnectEx.
136 func (sw *Switch) ConnectEx(s syscall.Handle, sa syscall.Sockaddr, b *byte, n uint32, nwr *uint32, o *syscall.Overlapped) (err error) {
139 return syscall.ConnectEx(s, sa, b, n, nwr, o)
149 so.Err = syscall.ConnectEx(s, sa, b, n, nwr, o)
  /prebuilts/go/linux-x86/src/net/internal/socktest/
sys_windows.go 135 // ConnectEx wraps syscall.ConnectEx.
136 func (sw *Switch) ConnectEx(s syscall.Handle, sa syscall.Sockaddr, b *byte, n uint32, nwr *uint32, o *syscall.Overlapped) (err error) {
139 return syscall.ConnectEx(s, sa, b, n, nwr, o)
149 so.Err = syscall.ConnectEx(s, sa, b, n, nwr, o)
  /external/libevent/
iocp-internal.h 67 ConnectExPtr ConnectEx;
  /prebuilts/go/darwin-x86/src/internal/poll/
fd_windows.go 777 // Call ConnectEx. This doesn't need any locking, since it is only
780 func (fd *FD) ConnectEx(ra syscall.Sockaddr) error {
  /prebuilts/go/linux-x86/src/internal/poll/
fd_windows.go 777 // Call ConnectEx. This doesn't need any locking, since it is only
780 func (fd *FD) ConnectEx(ra syscall.Sockaddr) error {
  /prebuilts/go/darwin-x86/src/syscall/
syscall_windows.go 808 func connectEx(s Handle, name unsafe.Pointer, namelen int32, sendBuf *byte, sendDataLen uint32, bytesSent *uint32, overlapped *Overlapped) (err error) {
820 func ConnectEx(fd Handle, sa Sockaddr, sendBuf *byte, sendDataLen uint32, bytesSent *uint32, overlapped *Overlapped) error {
823 return errorspkg.New("failed to find ConnectEx: " + err.Error())
829 return connectEx(fd, ptr, n, sendBuf, sendDataLen, bytesSent, overlapped)
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_windows.go 808 func connectEx(s Handle, name unsafe.Pointer, namelen int32, sendBuf *byte, sendDataLen uint32, bytesSent *uint32, overlapped *Overlapped) (err error) {
820 func ConnectEx(fd Handle, sa Sockaddr, sendBuf *byte, sendDataLen uint32, bytesSent *uint32, overlapped *Overlapped) error {
823 return errorspkg.New("failed to find ConnectEx: " + err.Error())
829 return connectEx(fd, ptr, n, sendBuf, sendDataLen, bytesSent, overlapped)
    [all...]

Completed in 134 milliseconds