/external/qemu/android/utils/ |
mapfile.h | 25 typedef struct MapFile MapFile; 40 mapfile_is_valid(MapFile* handle) 56 extern MapFile* mapfile_open(const char* path, int oflag, int share_mode); 65 extern int mapfile_close(MapFile* handle); 74 extern ssize_t mapfile_read(MapFile* handle, void* buf, size_t nbyte); 83 extern ssize_t mapfile_read_at(MapFile* handle, 111 extern void* mapfile_map(MapFile* handle,
|
mapfile.c | 30 #include "mapfile.h" 32 MapFile* 91 return (MapFile*)(ptrdiff_t)file_handle; 95 mapfile_close(MapFile* handle) 110 mapfile_read(MapFile* handle, void* buf, size_t nbyte) 132 mapfile_read_at(MapFile* handle, size_t offset, void* buf, size_t nbyte) 151 mapfile_map(MapFile* handle,
|
/ndk/sources/host-tools/ndk-stack/elff/ |
mapfile.h | 25 typedef struct MapFile MapFile; 40 mapfile_is_valid(MapFile* handle) 56 extern MapFile* mapfile_open(const char* path, int oflag, int share_mode); 65 extern int mapfile_close(MapFile* handle); 74 extern ssize_t mapfile_read(MapFile* handle, void* buf, size_t nbyte); 83 extern ssize_t mapfile_read_at(MapFile* handle, 111 extern void* mapfile_map(MapFile* handle,
|
elf_mapped_section.h | 22 #include "mapfile.h" 49 bool map(MapFile* handle, Elf_Xword offset, Elf_Word size);
|
elf_mapped_section.cc | 33 bool ElfMappedSection::map(MapFile* handle,
|
mapfile.c | 30 #include "mapfile.h" 32 MapFile* 91 return (MapFile*)(ptrdiff_t)file_handle; 95 mapfile_close(MapFile* handle) 110 mapfile_read(MapFile* handle, void* buf, size_t nbyte) 132 mapfile_read_at(MapFile* handle, size_t offset, void* buf, size_t nbyte) 151 mapfile_map(MapFile* handle,
|
elf_file.cc | 44 elf_handle_((MapFile*)-1), 96 MapFile* file_handle = mapfile_open(path, O_RDONLY | O_BINARY, 0);
|
elf_file.h | 23 #include "mapfile.h" 514 MapFile* elf_handle_;
|
/external/qemu/elff/ |
elf_mapped_section.h | 22 #include "android/utils/mapfile.h"
49 bool map(MapFile* handle, Elf_Xword offset, Elf_Word size);
|
elf_mapped_section.cc | 33 bool ElfMappedSection::map(MapFile* handle,
|
elf_file.cc | 44 elf_handle_((MapFile*)-1),
96 MapFile* file_handle = mapfile_open(path, O_RDONLY | O_BINARY, 0);
|
elf_file.h | 23 #include "android/utils/mapfile.h"
514 MapFile* elf_handle_;
|
/art/runtime/ |
mem_map.h | 47 static MemMap* MapFile(size_t byte_count, int prot, int flags, int fd, off_t start) {
|
zip_archive.cc | 258 UniquePtr<MemMap> map(MemMap::MapFile(length, PROT_READ | PROT_WRITE, MAP_SHARED, file.Fd(), 0)); 499 dir_map_.reset(MemMap::MapFile(dir_size, PROT_READ, MAP_SHARED, fd_, dir_offset));
|
elf_file.cc | 84 if (!SetMap(MemMap::MapFile(elf_header_size, prot, flags, file_->Fd(), 0))) { 95 if (!SetMap(MemMap::MapFile(program_header_size, prot, flags, file_->Fd(), 0))) { 101 if (!SetMap(MemMap::MapFile(file_->GetLength(), prot, flags, file_->Fd(), 0))) {
|
dex_file.cc | 179 UniquePtr<MemMap> map(MemMap::MapFile(length, PROT_READ, MAP_PRIVATE, fd, 0)); [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
importer_unittest.cc | 427 TEST_F(DiskSourceTreeTest, MapFile) {
|
/external/protobuf/src/google/protobuf/compiler/ |
importer_unittest.cc | 427 TEST_F(DiskSourceTreeTest, MapFile) {
|