1 instantiation of ArrayPoolEventSource
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Buffers\ArrayPoolEventSource.cs (1)
14internal 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)
14internal 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; 114log.BufferRented(bufferId, buffer.Length, Id, ArrayPoolEventSource.NoBucketId); 115log.BufferAllocated(bufferId, buffer.Length, Id, ArrayPoolEventSource.NoBucketId, bucketIndex >= _buckets.Length ? 116ArrayPoolEventSource.BufferAllocatedReason.OverMaximumSize : 117ArrayPoolEventSource.BufferAllocatedReason.PoolExhausted); 170ArrayPoolEventSource log = ArrayPoolEventSource.Log; 177haveBucket ? bucketIndex : ArrayPoolEventSource.NoBucketId, 178haveBucket ? ArrayPoolEventSource.BufferDroppedReason.Full : ArrayPoolEventSource.BufferDroppedReason.OverMaximumSize); 189ArrayPoolEventSource log = ArrayPoolEventSource.Log; 473ArrayPoolEventSource log = ArrayPoolEventSource.Log;