1 write to pageFileView
Microsoft.Build.Engine (1)
LocalProvider\SharedMemory.cs (1)
218this.pageFileView =
12 references to pageFileView
Microsoft.Build.Engine (12)
LocalProvider\SharedMemory.cs (12)
143NativeMethods.UnmapViewOfFile(pageFileView); 203NativeMethods.UnmapViewOfFile(pageFileView); 231if (this.pageFileView == NativeMethods.NullPtr) 297NativeMethods.UnmapViewOfFile(pageFileView); 351(pageFileView != NativeMethods.NullPtr); 547Marshal.WriteInt32((IntPtr)pageFileView, (int)writeLength); 552(IntPtr)((int)pageFileView + 4), //Destination (+4 because of the int written to the memory file with the write length) 574Marshal.WriteInt32((IntPtr)pageFileView, (int)writeStream.Position); 581(IntPtr)((int)pageFileView + writeStartPosition + 4), // Destination + 4 for the int indicating the size of the data to be copied to the memory file 713int endWritePosition = Marshal.ReadInt32((IntPtr)((int)pageFileView)); 718(IntPtr)((int)pageFileView + 4 + readStream.Position), // Source 898Marshal.WriteInt32((IntPtr)pageFileView, (int)writeStream.Position);