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.cc924 Win32MemoryMappedFile(HANDLE file, HANDLE file_mapping, void* memory, in Win32MemoryMappedFile() argument
927 file_mapping_(file_mapping), in Win32MemoryMappedFile()
953 HANDLE file_mapping = in open() local
955 if (file_mapping == nullptr) return nullptr; in open()
958 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size); in open()
959 return new Win32MemoryMappedFile(file, file_mapping, memory, size); in open()
972 HANDLE file_mapping = CreateFileMapping(file, nullptr, PAGE_READWRITE, 0, in create() local
974 if (file_mapping == nullptr) return nullptr; in create()
976 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size); in create()
978 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.c320 struct append_file **file_mapping; variable
1598 for(append = file_mapping[index]; append; append = append->next) { in get_fragment_checksum()
1968 append_file->next = file_mapping[fragment]; in add_file()
1969 file_mapping[fragment] = append_file; in add_file()