1 instantiation of ArrayPoolEventSource
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Buffers\ArrayPoolEventSource.cs (1)
13internal static readonly ArrayPoolEventSource Log = new ArrayPoolEventSource();
32 references to ArrayPoolEventSource
System.Private.CoreLib (32)
src\libraries\System.Private.CoreLib\src\System\Buffers\ArrayPoolEventSource.cs (1)
13internal static readonly ArrayPoolEventSource Log = new ArrayPoolEventSource();
src\libraries\System.Private.CoreLib\src\System\Buffers\ConfigurableArrayPool.cs (16)
66ArrayPoolEventSource log = ArrayPoolEventSource.Log; 105log.BufferRented(bufferId, buffer.Length, Id, ArrayPoolEventSource.NoBucketId); 106log.BufferAllocated(bufferId, buffer.Length, Id, ArrayPoolEventSource.NoBucketId, index >= _buckets.Length ? 107ArrayPoolEventSource.BufferAllocatedReason.OverMaximumSize : 108ArrayPoolEventSource.BufferAllocatedReason.PoolExhausted); 145ArrayPoolEventSource log = ArrayPoolEventSource.Log; 152log.BufferDropped(bufferId, array.Length, Id, ArrayPoolEventSource.NoBucketId, ArrayPoolEventSource.BufferDroppedReason.OverMaximumSize); 215ArrayPoolEventSource log = ArrayPoolEventSource.Log; 219ArrayPoolEventSource.BufferAllocatedReason.Pooled); 263ArrayPoolEventSource log = ArrayPoolEventSource.Log; 266log.BufferDropped(array.GetHashCode(), _bufferLength, _poolId, Id, ArrayPoolEventSource.BufferDroppedReason.Full);
src\libraries\System.Private.CoreLib\src\System\Buffers\SharedArrayPool.cs (15)
52ArrayPoolEventSource log = ArrayPoolEventSource.Log; 120log.BufferRented(bufferId, buffer.Length, Id, ArrayPoolEventSource.NoBucketId); 121log.BufferAllocated(bufferId, buffer.Length, Id, ArrayPoolEventSource.NoBucketId, bucketIndex >= _buckets.Length ? 122ArrayPoolEventSource.BufferAllocatedReason.OverMaximumSize : 123ArrayPoolEventSource.BufferAllocatedReason.PoolExhausted); 176ArrayPoolEventSource log = ArrayPoolEventSource.Log; 183haveBucket ? bucketIndex : ArrayPoolEventSource.NoBucketId, 184haveBucket ? ArrayPoolEventSource.BufferDroppedReason.Full : ArrayPoolEventSource.BufferDroppedReason.OverMaximumSize); 195ArrayPoolEventSource log = ArrayPoolEventSource.Log; 479ArrayPoolEventSource log = ArrayPoolEventSource.Log;