Lines Matching refs:off

221   off_t off = sarmag;  in setup()  local
225 off = sarmag + sizeof(Archive_header) + armap_size; in setup()
234 if ((off & 1) != 0) in setup()
235 ++off; in setup()
237 header_size = this->read_header(off, true, &xname, NULL); in setup()
244 const unsigned char* p = this->get_view(off + sizeof(Archive_header), in setup()
329 Archive::read_header(off_t off, bool cache, std::string* pname, in read_header() argument
332 const unsigned char* p = this->get_view(off, sizeof(Archive_header), true, in read_header()
335 return this->interpret_header(hdr, off, pname, nested_off); in read_header()
343 Archive::interpret_header(const Archive_header* hdr, off_t off, in interpret_header() argument
349 this->name().c_str(), static_cast<size_t>(off)); in interpret_header()
369 this->name().c_str(), static_cast<size_t>(off)); in interpret_header()
380 this->name().c_str(), static_cast<size_t>(off)); in interpret_header()
411 this->name().c_str(), static_cast<size_t>(off)); in interpret_header()
421 this->name().c_str(), static_cast<size_t>(off)); in interpret_header()
444 off_t off; member
451 const_iterator(Archive* archive, off_t off) in const_iterator() argument
452 : archive_(archive), off_(off) in const_iterator()
487 { return this->off_ == p->off; } in operator ==()
491 { return this->off_ != p->off; } in operator !=()
522 this->header_.off = filesize; in read_next_header()
535 this->header_.off = filesize; in read_next_header()
540 this->header_.off = this->off_; in read_next_header()
575 Archive::get_file_and_offset(off_t off, Input_file** input_file, off_t* memoff, in get_file_and_offset() argument
580 *memsize = this->read_header(off, false, member_name, &nested_off); in get_file_and_offset()
585 *memoff = off + static_cast<off_t>(sizeof(Archive_header)); in get_file_and_offset()
654 Archive::get_elf_object_for_member(off_t off, bool* punconfigured) in get_elf_object_for_member() argument
663 if (!this->get_file_and_offset(off, &input_file, &memoff, &memsize, in get_elf_object_for_member()
702 this->name().c_str(), static_cast<size_t>(off)); in get_elf_object_for_member()
720 this->read_symbols(p->off); in read_all_symbols()
727 Archive::read_symbols(off_t off) in read_symbols() argument
729 Object* obj = this->get_elf_object_for_member(off, NULL); in read_symbols()
736 this->members_[off] = member; in read_symbols()
907 if (!this->include_member(symtab, layout, input_objects, p->off, in include_all_members()
967 Input_objects* input_objects, off_t off, in include_member() argument
972 std::map<off_t, Archive_member>::const_iterator p = this->members_.find(off); in include_member()
999 Object* obj = this->get_elf_object_for_member(off, punconfigured); in include_member()