Home
last modified time | relevance | path

Searched refs:file_mapping (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/base/platform/
Dplatform-win32.cc856 Win32MemoryMappedFile(HANDLE file, HANDLE file_mapping, void* memory, in Win32MemoryMappedFile() argument
859 file_mapping_(file_mapping), in Win32MemoryMappedFile()
884 HANDLE file_mapping = in open() local
886 if (file_mapping == NULL) return NULL; in open()
889 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size); in open()
890 return new Win32MemoryMappedFile(file, file_mapping, memory, size); in open()
903 HANDLE file_mapping = CreateFileMapping(file, NULL, PAGE_READWRITE, 0, in create() local
905 if (file_mapping == NULL) return NULL; in create()
907 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size); in create()
909 return new Win32MemoryMappedFile(file, file_mapping, memory, size); in create()
/external/squashfs-tools/squashfs-tools/
Dmksquashfs.h150 extern struct append_file **file_mapping;
Dprocess_fragments.c230 for(append = file_mapping[index]; append; append = append->next) { in get_fragment_cksum()
Dread_fs.c221 file_mapping = calloc(sBlk->fragments, sizeof(struct append_file *)); in scan_inode_table()
222 if(file_mapping == NULL) in scan_inode_table()
Dmksquashfs.c301 struct append_file **file_mapping; variable
1514 for(append = file_mapping[index]; append; append = append->next) { in get_fragment_checksum()
1884 append_file->next = file_mapping[fragment]; in add_file()
1885 file_mapping[fragment] = append_file; in add_file()