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