2 instantiations of InterningBinaryReader
Microsoft.Build (2)
InterningBinaryReader.cs (2)
248return new InterningBinaryReader(stream, buffer, false); 250return new InterningBinaryReader(stream, GetPooledBuffer(), true);
13 references to InterningBinaryReader
Microsoft.Build (9)
BackEnd\BuildManager\CacheSerialization.cs (1)
124using var translator = BinaryTranslator.GetReadTranslator(fileStream, InterningBinaryReader.PoolingBuffer);
BackEnd\Client\MSBuildClientPacketPump.cs (1)
90_binaryReadTranslator = BinaryTranslator.GetReadTranslator(_readBufferMemoryStream, InterningBinaryReader.CreateSharedBuffer());
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
619_binaryReaderFactory = InterningBinaryReader.CreateSharedBuffer();
BackEnd\Shared\BuildRequestConfiguration.cs (1)
1073: BinaryTranslator.GetReadTranslator(stream, InterningBinaryReader.PoolingBuffer);
BackEnd\Shared\TargetResult.cs (2)
340using var itemTranslator = BinaryTranslator.GetReadTranslator(itemsStream, InterningBinaryReader.PoolingBuffer); 355: BinaryTranslator.GetReadTranslator(stream, InterningBinaryReader.PoolingBuffer);
InterningBinaryReader.cs (2)
294return InterningBinaryReader.Create(stream, this); 307return InterningBinaryReader.Create(stream, null);
NodeEndpointOutOfProcBase.cs (1)
210_sharedReadBuffer = InterningBinaryReader.CreateSharedBuffer();
Microsoft.Build.Engine.UnitTests (4)
AssemblyNameEx_Tests.cs (2)
691ITranslator readTranslator = BinaryTranslator.GetReadTranslator(serializationStream, InterningBinaryReader.PoolingBuffer); 715ITranslator readTranslator = BinaryTranslator.GetReadTranslator(serializationStream, InterningBinaryReader.PoolingBuffer);
BackEnd\BinaryTranslator_Tests.cs (1)
40using ITranslator readTranslator = BinaryTranslator.GetReadTranslator(stream, InterningBinaryReader.PoolingBuffer);
BackEnd\TranslationHelpers.cs (1)
44return BinaryTranslator.GetReadTranslator(s_serializationStream, InterningBinaryReader.PoolingBuffer);