6 instantiations of MemoryPoolOptions
InMemory.FunctionalTests (1)
TestTransport\TestServer.cs (1)
73_memoryPool = context.MemoryPoolFactory.Create(new MemoryPoolOptions { Owner = "test_server" });
Microsoft.AspNetCore.Server.HttpSys (1)
HttpSysListener.cs (1)
58MemoryPool = memoryPoolFactory.Create(new MemoryPoolOptions { Owner = "httpsys" });
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpServer.cs (1)
69_memoryPool = memoryPoolFactory.Create(new MemoryPoolOptions { Owner = "iis" });
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
PinnedBlockMemoryPoolFactoryTests.cs (1)
30var pool = factory.Create(new MemoryPoolOptions { Owner = "test" });
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeConnectionListener.cs (1)
43_memoryPool = options.MemoryPoolFactory.Create(new MemoryPoolOptions { Owner = "kestrel" });
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
SocketConnectionFactoryOptions.cs (1)
72internal static readonly MemoryPoolOptions MemoryPoolOptions = new MemoryPoolOptions { Owner = "kestrel" };
17 references to MemoryPoolOptions
InMemory.FunctionalTests (1)
src\Servers\Kestrel\shared\test\TestServiceContext.cs (1)
90public MemoryPool<byte> Create(MemoryPoolOptions options = null) => _memoryPoolFactory();
Interop.FunctionalTests (1)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Connections.Abstractions (1)
IMemoryPoolFactory.cs (1)
18MemoryPool<T> Create(MemoryPoolOptions? options = null);
Microsoft.AspNetCore.Server.HttpSys (1)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Server.IIS (1)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\PinnedBlockMemoryPoolFactory.cs (1)
27public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
src\Servers\Kestrel\shared\test\TestServiceContext.cs (1)
90public MemoryPool<byte> Create(MemoryPoolOptions options = null) => _memoryPoolFactory();
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (2)
src\Servers\Kestrel\shared\DefaultSimpleMemoryPoolFactory.cs (1)
13public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (1)
47public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2)
SocketConnectionFactoryOptions.cs (1)
72internal static readonly MemoryPoolOptions MemoryPoolOptions = new MemoryPoolOptions { Owner = "kestrel" };
src\Servers\Kestrel\shared\DefaultSimpleMemoryPoolFactory.cs (1)
13public MemoryPool<byte> Create(MemoryPoolOptions? options = null)
Sockets.BindTests (2)
src\Servers\Kestrel\shared\test\TestServiceContext.cs (1)
90public MemoryPool<byte> Create(MemoryPoolOptions options = null) => _memoryPoolFactory();
src\Servers\Kestrel\shared\test\TransportTestHelpers\DiagnosticMemoryPoolFactory.cs (1)
28public MemoryPool<byte> Create(MemoryPoolOptions options = null)
Sockets.FunctionalTests (2)
src\Servers\Kestrel\shared\test\TestServiceContext.cs (1)
90public MemoryPool<byte> Create(MemoryPoolOptions options = null) => _memoryPoolFactory();
src\Servers\Kestrel\shared\test\TransportTestHelpers\DiagnosticMemoryPoolFactory.cs (1)
28public MemoryPool<byte> Create(MemoryPoolOptions options = null)