Home
last modified time | relevance | path

Searched refs:IOControlCode (Results 1 – 25 of 44) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/tests/FunctionalTests/
H A DOSSupport.cs51 … Assert.Throws<SocketException>(() => client.IOControl(IOControlCode.DataToRead, null, null)); in IOControl_FIONREAD_Success()
52 …Assert.Throws<SocketException>(() => client.IOControl(IOControlCode.DataToRead, null, new byte[0])… in IOControl_FIONREAD_Success()
57 Assert.Equal(4, client.IOControl(IOControlCode.DataToRead, null, fionreadResult)); in IOControl_FIONREAD_Success()
61 … Assert.Equal(4, client.IOControl((int)IOControlCode.DataToRead, null, fionreadResult)); in IOControl_FIONREAD_Success()
76 … Assert.Equal(4, client.IOControl(IOControlCode.DataToRead, null, fionreadResult)); in IOControl_FIONREAD_Success()
90 … Assert.Throws<SocketException>(() => client.IOControl(IOControlCode.OobDataRead, null, null)); in IOControl_SIOCATMARK_Success()
107 … Assert.Equal(4, client.IOControl(IOControlCode.OobDataRead, null, siocatmarkResult)); in IOControl_SIOCATMARK_Success()
144 foreach (IOControlCode code in Enum.GetValues(typeof(IOControlCode))) in IOControl_UnknownValues_Unix_Throws()
148 case IOControlCode.NonBlockingIO: in IOControl_UnknownValues_Unix_Throws()
149 case IOControlCode.DataToRead: in IOControl_UnknownValues_Unix_Throws()
[all …]
H A DDisposedSocketTests.cs39 …t.Throws<ObjectDisposedException>(() => GetDisposedSocket().IOControl(IOControlCode.AsyncIO, null,… in IOControl_Throws_ObjectDisposed()
491 …t.Throws<ObjectDisposedException>(() => GetDisposedSocket().IOControl(IOControlCode.Flush, s_buffe… in IOControl_IOControlCode_Throws_ObjectDisposed()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/windows-0.24.0/src/Windows/Devices/Custom/
H A Dmod.rs381 pub struct IOControlCode(::windows::runtime::IInspectable); struct
382 impl IOControlCode { implementation
436 impl ::windows::runtime::RuntimeName for IOControlCode { implementation
440 fn from(value: IOControlCode) -> Self { in from()
445 fn from(value: &IOControlCode) -> Self { in from()
460 fn from(value: IOControlCode) -> Self { in from()
465 fn from(value: &IOControlCode) -> Self { in from()
480 fn from(value: IOControlCode) -> Self { in from()
485 fn from(value: &IOControlCode) -> Self { in from()
499 unsafe impl ::std::marker::Send for IOControlCode {} implementation
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/src/System/Net/Sockets/
H A DIOControlCode.cs7 public enum IOControlCode : long enum
H A DSocketPal.Unix.cs1046 const int FIONBIO = unchecked((int)IOControlCode.NonBlockingIO); in WindowsIoctl()
1047 const int FIONREAD = (int)IOControlCode.DataToRead; in WindowsIoctl()
1048 const int SIOCATMARK = (int)IOControlCode.OobDataRead; in WindowsIoctl()
H A DSocket.cs1771 … public int IOControl(IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue) in IOControl()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Sockets/
H A DIOControlCode.cs16 public enum IOControlCode:long { enum
H A DSocket.cs2261 … public int IOControl(IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue) { in IOControl()
2266 internal int IOControl( IOControlCode ioControlCode, in IOControl()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.NetworkInformation/src/System/Net/NetworkInformation/
H A DNetworkAddressChange.Windows.cs259 (int)IOControlCode.AddressListChange, in StartHelper()
298 (int)IOControlCode.AddressListChange, in StartHelper()
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/windows-sys-0.28.0/src/Windows/Devices/Custom/
H A Dmod.rs59 pub type IOControlCode = *mut ::core::ffi::c_void; typedef
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/NetworkInformation/
H A DNetworkAddressChange.cs269 (int) IOControlCode.AddressListChange, in StartHelper()
297 (int) IOControlCode.AddressListChange, in StartHelper()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Facades/System.Net.Sockets/
H A DTypeForwarders.cs23 …System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Sockets.IOControlCode))]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7.1/Facades/
H A DSystem.Net.Sockets.cs16 …System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Sockets.IOControlCode))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/Facades/
H A DSystem.Net.Sockets.cs17 …System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Sockets.IOControlCode))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/Facades/
H A DSystem.Net.Sockets.cs17 …System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Sockets.IOControlCode))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/Facades/
H A DSystem.Net.Sockets.cs17 …System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Sockets.IOControlCode))]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net/
H A DServicePoint.cs204 socket.IOControl (IOControlCode.KeepAliveValues, bytes, null); in KeepAliveSetup()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DPeerUnsafeNativeMethods.cs88 … unchecked((int)IOControlCode.AddressListSort), in SortAddresses()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/ref/
H A DSystem.Net.Sockets.cs11 public enum IOControlCode : long enum
293 …public int IOControl(System.Net.Sockets.IOControlCode ioControlCode, byte[] optionInValue, byte[] … in IOControl()
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKCommunicator/GKNetCore/DHT/
H A DDHTClient.cs119 fSocket.IOControl((IOControlCode)SIO_UDP_CONNRESET, optionInValue, optionOutValue); in DHTClient()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DInternal.cs604 (int) IOControlCode.AddressListChange, in Setup()
627 (int) IOControlCode.AddressListChange, in Setup()
H A D_AutoWebProxyScriptHelper.cs677 IOControlCode.AddressListSort, in sortIpAddressList()
H A DServicePoint.cs345 IOControlCode.KeepAliveValues, in CompleteGetConnection()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/
H A Dcommon.sources723 ../referencesource/System/net/System/Net/Sockets/IOControlCode.cs
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A DSystem.cs7989 public enum IOControlCode : long enum
8280 …public int IOControl(System.Net.Sockets.IOControlCode ioControlCode, byte[] optionInValue, byte[] … in IOControl()

12