5 references to BUFFER_SIZE
Microsoft.Build (5)
BufferedReadStream.cs (5)
29
_buffer = new byte[
BUFFER_SIZE
];
71
if (count >
BUFFER_SIZE
)
105
int innerReadCount = _innerStream.Read(_buffer, 0,
BUFFER_SIZE
);
131
if (count >
BUFFER_SIZE
)
155
int innerReadCount = await _innerStream.ReadAsync(_buffer, 0,
BUFFER_SIZE
, cancellationToken);