5 references to BUFFER_SIZE
Microsoft.Build.Framework (5)
BackEnd\BufferedReadStream.cs (5)
25
_buffer = new byte[
BUFFER_SIZE
];
67
if (count >
BUFFER_SIZE
)
101
int innerReadCount = _innerStream.Read(_buffer, 0,
BUFFER_SIZE
);
126
if (count >
BUFFER_SIZE
)
150
int innerReadCount = await _innerStream.ReadAsync(_buffer, 0,
BUFFER_SIZE
, cancellationToken);