Home
last modified time | relevance | path

Searched refs:IOPending (Results 1 – 25 of 33) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/src/System/Net/Sockets/
H A DSocketAsyncEventArgs.Unix.cs42 Debug.Assert(socketError != SocketError.IOPending); in FinishOperationSync()
83 if (socketError != SocketError.IOPending) in DoOperationAccept()
100 if (socketError != SocketError.IOPending) in DoOperationConnect()
148 if (errorCode != SocketError.IOPending) in DoOperationReceive()
175 if (errorCode != SocketError.IOPending) in DoOperationReceiveFrom()
215 if (socketError != SocketError.IOPending) in DoOperationReceiveMessageFrom()
239 if (errorCode != SocketError.IOPending) in DoOperationSend()
304 return SocketError.IOPending; in DoOperationSendPackets()
324 if (errorCode != SocketError.IOPending) in DoOperationSendTo()
H A DBaseOverlappedAsyncResult.Windows.cs163 return SocketError.IOPending; in ProcessOverlappedResult()
169 if (errorCode == SocketError.IOPending) in ProcessOverlappedResult()
173 return SocketError.IOPending; in ProcessOverlappedResult()
H A DSocket.cs2465 if (errorCode != SocketError.Success && errorCode != SocketError.IOPending) in BeginSend()
3208 errorCode = SocketError.IOPending; in BeginReceiveMessageFrom()
3775 bool pending = (socketError == SocketError.IOPending); in AcceptAsync()
3880 pending = (socketError == SocketError.IOPending); in ConnectAsync()
3973 bool retval = (socketError == SocketError.IOPending); in DisconnectAsync()
4006 bool pending = (socketError == SocketError.IOPending); in ReceiveAsync()
4059 bool pending = (socketError == SocketError.IOPending); in ReceiveFromAsync()
4114 bool pending = (socketError == SocketError.IOPending); in ReceiveMessageFromAsync()
4147 bool pending = (socketError == SocketError.IOPending); in SendAsync()
4189 bool pending = (socketError == SocketError.IOPending); in SendPacketsAsync()
[all …]
H A DSocketAsyncContext.Unix.cs1174 return SocketError.IOPending; in AcceptAsync()
1239 return SocketError.IOPending; in ConnectAsync()
1351 return SocketError.IOPending; in ReceiveFromAsync()
1428 return SocketError.IOPending; in ReceiveFromAsync()
1502 return SocketError.IOPending; in ReceiveMessageFromAsync()
1615 return SocketError.IOPending; in SendToAsync()
1695 return SocketError.IOPending; in SendToAsync()
1753 return SocketError.IOPending; in SendFileAsync()
H A DSocketAsyncEventArgs.Windows.cs83 if (error != SocketError.IOPending) in FreeNativeOverlappedIfNotPending()
109 if (socketError != SocketError.IOPending) in ProcessIOCPResult()
121 return SocketError.IOPending; in ProcessIOCPResult()
145 if (socketError != SocketError.IOPending) in ProcessIOCPResultWithSingleBufferHandle()
163 return SocketError.IOPending; in ProcessIOCPResultWithSingleBufferHandle()
H A DSocket.Unix.cs183 if (errorCode == SocketError.IOPending) in SendFileInternalAsync()
H A DSocketPal.Unix.cs1621 if (error == SocketError.IOPending) in SendPacketsAsync()
/dports/devel/cxxtools/cxxtools-2.2.1/include/cxxtools/
H A Dioerror.h111 class CXXTOOLS_API IOPending : public IOError
114 explicit IOPending(const std::string& what);
116 ~IOPending() throw() in throw()
/dports/devel/cxxtools/cxxtools-2.2.1/src/
H A Diodevice.cpp61 throw IOPending("read operation pending"); in beginRead()
114 throw IOPending("read operation pending"); in read()
143 throw IOPending("write operation pending"); in beginWrite()
199 throw IOPending("write operation pending"); in write()
H A Dioerror.cpp74 IOPending::IOPending(const std::string& what) in IOPending() function in cxxtools::IOPending
H A Dstreambuffer.cpp79 throw IOPending("IODevice in use"); in attach()
84 throw IOPending("IODevice in use"); in attach()
228 throw IOPending("discard failed - streambuffer is in use"); in discard()
H A Dtcpsocket.cpp220 throw IOPending("connect operation pending"); in onBeginRead()
241 throw IOPending("connect operation pending"); in onBeginWrite()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Sockets/
H A DSocketErrors.cs387 IOPending = 997, enumerator
395IOPending = (int) UnsafeNclNativeMethods.ErrorCodes.ERROR_IO_PENDING, // 997
H A D_BaseOverlappedAsyncResult.cs469 case SocketError.IOPending: in CheckAsyncCallOverlappedResult()
523 case SocketError.IOPending: in CheckAsyncCallOverlappedResult()
H A DSocket.cs3487 if(errorCode != SocketError.Success && errorCode !=SocketError.IOPending){ in BeginSend()
3526 if(errorCode != SocketError.Success && errorCode !=SocketError.IOPending){ in BeginSend()
3553 if(errorCode != SocketError.Success && errorCode !=SocketError.IOPending){ in UnsafeBeginSend()
3751 if(errorCode != SocketError.Success && errorCode !=SocketError.IOPending){ in BeginSend()
3790 if(errorCode != SocketError.Success && errorCode !=SocketError.IOPending){ in BeginSend()
4242 if(errorCode != SocketError.Success && errorCode !=SocketError.IOPending){ in BeginReceive()
4280 if(errorCode != SocketError.Success && errorCode !=SocketError.IOPending){ in BeginReceive()
4380 if(errorCode != SocketError.Success && errorCode !=SocketError.IOPending){ in BeginReceive()
4415 if(errorCode != SocketError.Success && errorCode !=SocketError.IOPending){ in BeginReceive()
4669 errorCode = SocketError.IOPending; in BeginReceiveMessageFrom()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Primitives/src/System/Net/Sockets/
H A DSocketError.cs63 IOPending = (int)Interop.Winsock.ERROR_IO_PENDING, enumerator
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/Net/Sockets/
H A DSocketErrorPal.Unix.cs105 { SocketError.IOPending, Interop.Error.EINPROGRESS },
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Primitives/ref/
H A DSystem.Net.Primitives.cs399 IOPending = 997, enumerator
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A DSystem.cs8393 IOPending = 997, enumerator
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A DSystem.cs8517 IOPending = 997, enumerator
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/
H A DSystem.cs8391 IOPending = 997, enumerator
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/
H A DSystem.cs8513 IOPending = 997, enumerator
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.0/
H A DSystem.cs11339 IOPending = 997, enumerator
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v2.0/
H A DSystem.cs10989 IOPending = 997, enumerator
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/
H A DSystem.cs11632 IOPending = 997, enumerator

12