26 references to Anonymous
Microsoft.AspNetCore.Server.HttpSys (26)
_generated\22\Windows.Win32.HTTP_DATA_CHUNK.g.cs (6)
36
internal ref _Anonymous_e__Union._FromMemory_e__Struct FromMemory => ref this.
Anonymous
.FromMemory;
40
internal ref _Anonymous_e__Union._FromFileHandle_e__Struct FromFileHandle => ref this.
Anonymous
.FromFileHandle;
44
internal ref _Anonymous_e__Union._FromFragmentCache_e__Struct FromFragmentCache => ref this.
Anonymous
.FromFragmentCache;
48
internal ref _Anonymous_e__Union._FromFragmentCacheEx_e__Struct FromFragmentCacheEx => ref this.
Anonymous
.FromFragmentCacheEx;
52
internal ref _Anonymous_e__Union._Trailers_e__Struct Trailers => ref this.
Anonymous
.Trailers;
56
internal ref _Anonymous_e__Union._FromWinHttpFastForwarding_e__Struct FromWinHttpFastForwarding => ref this.
Anonymous
.FromWinHttpFastForwarding;
RequestProcessing\Response.cs (2)
640
dataChunk.
Anonymous
.Trailers.TrailerCount = checked((ushort)trailerCount);
641
dataChunk.
Anonymous
.Trailers.pTrailers = unknownHeaders;
RequestProcessing\ResponseBody.cs (2)
287
chunk.
Anonymous
.FromMemory.pBuffer = ptr;
289
chunk.
Anonymous
.FromMemory.BufferLength = (uint)bytes.Length;
RequestProcessing\ResponseStreamAsyncResult.cs (13)
80
_dataChunks[currentChunk].
Anonymous
.FromMemory.pBuffer = (void*)Marshal.UnsafeAddrOfPinnedArrayElement(chunkHeaderBuffer.Array!, chunkHeaderBuffer.Offset);
84
_dataChunks[currentChunk].
Anonymous
.FromMemory.pBuffer = (void*)Marshal.UnsafeAddrOfPinnedArrayElement(data.Array!, data.Offset);
123
_dataChunks[0].
Anonymous
.FromMemory.BufferLength = (uint)chunkHeaderBuffer.Count;
127
_dataChunks[1].
Anonymous
.FromFileHandle.ByteRange.StartingOffset = (ulong)offset;
128
_dataChunks[1].
Anonymous
.FromFileHandle.ByteRange.Length = (ulong)count;
129
_dataChunks[1].
Anonymous
.FromFileHandle.FileHandle = (HANDLE)_fileStream.SafeFileHandle.DangerousGetHandle();
140
_dataChunks[0].
Anonymous
.FromFileHandle.ByteRange.StartingOffset = (ulong)offset;
141
_dataChunks[0].
Anonymous
.FromFileHandle.ByteRange.Length = (ulong)count;
142
_dataChunks[0].
Anonymous
.FromFileHandle.FileHandle = (HANDLE)_fileStream.SafeFileHandle.DangerousGetHandle();
152
_dataChunks[0].
Anonymous
.FromMemory.pBuffer = (void*)Marshal.UnsafeAddrOfPinnedArrayElement(chunkHeaderBuffer.Array!, chunkHeaderBuffer.Offset);
164
chunk.
Anonymous
.FromMemory.BufferLength = (uint)segment.Count;
173
chunk.
Anonymous
.FromMemory.pBuffer = ptr;
175
chunk.
Anonymous
.FromMemory.BufferLength = (uint)bytes.Length;
src\aspnetcore\src\Shared\HttpSys\RequestProcessing\NativeRequestContext.cs (3)
705
if (dataChunkOffset >= pDataChunk->
Anonymous
.FromMemory.BufferLength)
713
var pFrom = (byte*)pDataChunk->
Anonymous
.FromMemory.pBuffer + dataChunkOffset + fixup;
715
var bytesToRead = pDataChunk->
Anonymous
.FromMemory.BufferLength - (uint)dataChunkOffset;