10 references to DiagnosticMemoryPool
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (10)
ConcurrentPipeWriterTests.cs (5)
21using (var diagnosticPool = new DiagnosticMemoryPool(memoryPool)) 84using (var diagnosticPool = new DiagnosticMemoryPool(memoryPool)) 182using (var diagnosticPool = new DiagnosticMemoryPool(memoryPool)) 266using (var diagnosticPool = new DiagnosticMemoryPool(memoryPool)) 334using (var diagnosticPool = new DiagnosticMemoryPool(memoryPool))
DiagnosticMemoryPoolTests.cs (4)
14protected override MemoryPool<byte> CreatePool() => new DiagnosticMemoryPool(new PinnedBlockMemoryPool()); 179var memoryPool = new DiagnosticMemoryPool(new PinnedBlockMemoryPool(), allowLateReturn: true); 189var memoryPool = new DiagnosticMemoryPool(new PinnedBlockMemoryPool(), allowLateReturn: true); 205var memoryPool = new DiagnosticMemoryPool(new PinnedBlockMemoryPool(), rentTracking: true);
src\Shared\Buffers.MemoryPool\MemoryPoolFactory.cs (1)
11return new DiagnosticMemoryPool(CreatePinnedBlockMemoryPool());