5 instantiations of MemoryMappedFile
System.Core (5)
System\IO\MemoryMappedFiles\MemoryMappedFile.cs (5)
93return new MemoryMappedFile(handle); 181return new MemoryMappedFile(handle, fileStream, false); 244return new MemoryMappedFile(handle, fileStream, leaveOpen); 303return new MemoryMappedFile(handle); 372return new MemoryMappedFile(handle);
25 references to MemoryMappedFile
System.Core (25)
System\IO\MemoryMappedFiles\MemoryMappedFile.cs (18)
63public static MemoryMappedFile OpenExisting(string mapName) { 67public static MemoryMappedFile OpenExisting(string mapName, MemoryMappedFileRights desiredAccessRights) { 73public static MemoryMappedFile OpenExisting(string mapName, MemoryMappedFileRights desiredAccessRights, 104public static MemoryMappedFile CreateFromFile(String path) { 107public static MemoryMappedFile CreateFromFile(String path, FileMode mode) { 111public static MemoryMappedFile CreateFromFile(String path, FileMode mode, String mapName) { 115public static MemoryMappedFile CreateFromFile(String path, FileMode mode, String mapName, Int64 capacity) { 121public static MemoryMappedFile CreateFromFile(String path, FileMode mode, String mapName, Int64 capacity, 184public static MemoryMappedFile CreateFromFile(FileStream fileStream, String mapName, Int64 capacity, 192public static MemoryMappedFile CreateFromFile(FileStream fileStream, String mapName, Int64 capacity, 249public static MemoryMappedFile CreateNew(String mapName, Int64 capacity) { 254public static MemoryMappedFile CreateNew(String mapName, Int64 capacity, MemoryMappedFileAccess access) { 259public static MemoryMappedFile CreateNew(String mapName, Int64 capacity, MemoryMappedFileAccess access, 267public static MemoryMappedFile CreateNew(String mapName, Int64 capacity, MemoryMappedFileAccess access, 310public static MemoryMappedFile CreateOrOpen(String mapName, Int64 capacity) { 315public static MemoryMappedFile CreateOrOpen(String mapName, Int64 capacity, 320public static MemoryMappedFile CreateOrOpen(String mapName, Int64 capacity, 328public static MemoryMappedFile CreateOrOpen(String mapName, Int64 capacity,
System\IO\MemoryMappedFiles\MemoryMappedView.cs (5)
83ulong extraMemNeeded = (ulong)offset % (ulong)MemoryMappedFile.GetSystemPageAllocationGranularity(); 91if (size != MemoryMappedFile.DefaultSize) { 117MemoryMappedFile.GetFileMapAccess(access), offsetHigh, offsetLow, new UIntPtr(nativeSize)); 141MemoryMappedFile.GetPageAccess(access)); 157if (size == MemoryMappedFile.DefaultSize) {
System\IO\MemoryMappedFiles\MemoryMappedViewAccessor.cs (1)
33Initialize(m_view.ViewHandle, m_view.PointerOffset, m_view.Size, MemoryMappedFile.GetFileAccess(m_view.Access));
System\IO\MemoryMappedFiles\MemoryMappedViewStream.cs (1)
33Initialize(m_view.ViewHandle, m_view.PointerOffset, m_view.Size, MemoryMappedFile.GetFileAccess(m_view.Access));