2 writes to buffer
mscorlib (2)
System\Diagnostics\Eventing\TraceLogging\DataCollector.cs (2)
231
this.
buffer
= null;
264
Array.Resize(ref this.
buffer
, newSize);
12 references to buffer
mscorlib (12)
System\Diagnostics\Eventing\TraceLogging\DataCollector.cs (12)
103
this.
buffer
[oldPos] = pb[i];
136
Marshal.Copy((IntPtr)p, this.
buffer
, oldPos, size);
174
Buffer.BlockCopy(value, 0, this.
buffer
, oldPos, size);
198
this.
buffer
[bookmark - 2] = unchecked((byte)count);
199
this.
buffer
[bookmark - 1] = unchecked((byte)(count >> 8));
230
this.PinArray(this.
buffer
, this.bufferPos);
239
if (this.
buffer
== null || this.
buffer
.Length < required)
248
if (this.
buffer
== null || this.
buffer
.Length < required)
256
var newSize = this.
buffer
== null ? 64 : this.
buffer
.Length;