Home | History | Annotate | Download | only in src

Lines Matching full:file_mapping

999                         HANDLE file_mapping,
1003 file_mapping_(file_mapping),
1026 HANDLE file_mapping = CreateFileMapping(file, NULL,
1028 if (file_mapping == NULL) return NULL;
1031 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size);
1032 return new Win32MemoryMappedFile(file, file_mapping, memory, size);
1043 HANDLE file_mapping = CreateFileMapping(file, NULL,
1045 if (file_mapping == NULL) return NULL;
1047 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size);
1049 return new Win32MemoryMappedFile(file, file_mapping, memory, size);