Lines Matching defs:off

227   off_t off = sarmag;
231 off = sarmag + sizeof(Archive_header) + armap_size;
236 off = sarmag + sizeof(Archive_header) + armap_size;
245 if ((off & 1) != 0)
246 ++off;
248 header_size = this->read_header(off, true, &xname, NULL);
255 const unsigned char* p = this->get_view(off + sizeof(Archive_header),
344 Archive::read_header(off_t off, bool cache, std::string* pname,
347 const unsigned char* p = this->get_view(off, sizeof(Archive_header), true,
350 return this->interpret_header(hdr, off, pname, nested_off);
358 Archive::interpret_header(const Archive_header* hdr, off_t off,
364 this->name().c_str(), static_cast<size_t>(off));
384 this->name().c_str(), static_cast<size_t>(off));
395 this->name().c_str(), static_cast<size_t>(off));
431 this->name().c_str(), static_cast<size_t>(off));
441 this->name().c_str(), static_cast<size_t>(off));
464 off_t off;
471 const_iterator(Archive* archive, off_t off)
472 : archive_(archive), off_(off)
507 { return this->off_ == p->off; }
511 { return this->off_ != p->off; }
542 this->header_.off = filesize;
555 this->header_.off = filesize;
560 this->header_.off = this->off_;
597 Archive::get_file_and_offset(off_t off, Input_file** input_file, off_t* memoff,
602 *memsize = this->read_header(off, false, member_name, &nested_off);
607 *memoff = off + static_cast<off_t>(sizeof(Archive_header));
676 Archive::get_elf_object_for_member(off_t off, bool* punconfigured)
685 if (!this->get_file_and_offset(off, &input_file, &memoff, &memsize,
724 this->name().c_str(), static_cast<size_t>(off));
742 this->read_symbols(p->off);
749 Archive::read_symbols(off_t off)
751 Object* obj = this->get_elf_object_for_member(off, NULL);
758 this->members_[off] = member;
929 if (!this->include_member(symtab, layout, input_objects, p->off,
989 Input_objects* input_objects, off_t off,
994 std::map<off_t, Archive_member>::const_iterator p = this->members_.find(off);
1021 Object* obj = this->get_elf_object_for_member(off, punconfigured);