Home | History | Annotate | Download | only in platform

Lines Matching refs:file_mapping

849                         HANDLE file_mapping,
853 file_mapping_(file_mapping),
876 HANDLE file_mapping = CreateFileMapping(file, NULL,
878 if (file_mapping == NULL) return NULL;
881 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size);
882 return new Win32MemoryMappedFile(file, file_mapping, memory, size);
893 HANDLE file_mapping = CreateFileMapping(file, NULL,
895 if (file_mapping == NULL) return NULL;
897 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size);
899 return new Win32MemoryMappedFile(file, file_mapping, memory, size);