Searched refs:file_mapping (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/base/platform/ |
D | platform-win32.cc | 856 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/ |
D | mksquashfs.h | 150 extern struct append_file **file_mapping;
|
D | process_fragments.c | 230 for(append = file_mapping[index]; append; append = append->next) { in get_fragment_cksum()
|
D | read_fs.c | 221 file_mapping = calloc(sBlk->fragments, sizeof(struct append_file *)); in scan_inode_table() 222 if(file_mapping == NULL) in scan_inode_table()
|
D | mksquashfs.c | 301 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()
|