Home
last modified time | relevance | path

Searched refs:file_offset (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_elf_loader.cpp46 off_t file_offset, in LoadAt() argument
53 file_offset, in LoadAt()
66 if ((file_offset & static_cast<off_t>(PAGE_SIZE - 1)) != 0) { in LoadAt()
67 error->Format("File offset is not page aligned (%08x)", file_offset); in LoadAt()
70 file_offset_ = file_offset; in LoadAt()
78 if (file_offset && fd_.SeekTo(file_offset) < 0) { in LoadAt()
80 "Can't seek to file offset %08x: %s", file_offset, strerror(errno)); in LoadAt()
Dcrazy_linker_api.cpp36 file_offset(0), in crazy_context_t()
49 size_t file_offset; member
90 size_t file_offset) { in crazy_context_set_file_offset() argument
91 context->file_offset = file_offset; in crazy_context_set_file_offset()
95 return context->file_offset; in crazy_context_get_file_offset()
206 context->file_offset, in crazy_library_open()
Dcrazy_linker_library_list.h70 off_t file_offset,
Dcrazy_linker_elf_loader.h43 off_t file_offset,
Dcrazy_linker_shared_library.h55 size_t file_offset,
Dcrazy_linker_shared_library.cpp163 size_t file_offset, in Load() argument
182 if (!loader.LoadAt(full_path_, file_offset, load_address, error)) { in Load()
Dcrazy_linker_library_list.cpp226 off_t file_offset, in LoadLibrary() argument
310 if (!lib->Load(full_path.c_str(), load_address, file_offset, error)) in LoadLibrary()
/ndk/sources/android/crazy_linker/include/
Dcrazy_linker.h83 size_t file_offset) _CRAZY_PUBLIC;