Home | History | Annotate | Download | only in linker

Lines Matching defs:file_offset

285 static soinfo* soinfo_alloc(const char* name, struct stat* file_stat, off64_t file_offset) {
291 soinfo* si = new (g_soinfo_allocator.alloc()) soinfo(name, file_stat, file_offset);
455 soinfo::soinfo(const char* name, const struct stat* file_stat, off64_t file_offset) {
465 this->file_offset = file_offset;
779 off64_t file_offset = 0;
785 file_offset = extinfo->library_fd_offset;
798 if ((file_offset % PAGE_SIZE) != 0) {
799 DL_ERR("file offset for the library \"%s\" is not page-aligned: %" PRId64, name, file_offset);
816 si->get_file_offset() == file_offset) {
828 ElfReader elf_reader(name, fd, file_offset);
833 soinfo* si = soinfo_alloc(SEARCH_NAME(name), &file_stat, file_offset);
1755 return file_offset;