Searched refs:inIndex (Results 1 - 7 of 7) sorted by relevance

/netbsd-current/external/bsd/elftosb/dist/common/
H A DStELFFile.h80 //! \brief Returns a reference to section number \a inIndex.
81 const Elf32_Shdr & getSectionAtIndex(unsigned inIndex) const;
90 uint8_t * getSectionDataAtIndex(unsigned inIndex);
103 const Elf32_Phdr & getSegmentAtIndex(unsigned inIndex) const;
109 uint8_t * getSegmentDataAtIndex(unsigned inIndex);
119 std::string getSectionNameAtIndex(unsigned inIndex);
132 //! \brief Returns the symbol with index \a inIndex.
133 const Elf32_Sym & getSymbolAtIndex(unsigned inIndex);
H A DStSRecordFile.h90 inline const SRecord & operator [] (unsigned inIndex) { return m_records[inIndex]; } argument
105 int readHexByte(std::string & inString, int inIndex);
H A DStELFFile.cpp143 const Elf32_Shdr & StELFFile::getSectionAtIndex(unsigned inIndex) const
145 if (inIndex > m_sectionHeaders.size())
146 throw std::invalid_argument("inIndex");
148 return m_sectionHeaders[inIndex];
181 uint8_t * StELFFile::getSectionDataAtIndex(unsigned inIndex) argument
183 return readSectionData(m_sectionHeaders[inIndex]);
229 const Elf32_Phdr & StELFFile::getSegmentAtIndex(unsigned inIndex) const
231 if (inIndex > m_programHeaders.size())
232 throw std::invalid_argument("inIndex");
234 return m_programHeaders[inIndex];
246 getSegmentDataAtIndex(unsigned inIndex) argument
298 getSectionNameAtIndex(unsigned inIndex) argument
358 getSymbolAtIndex(unsigned inIndex) argument
[all...]
H A DStSRecordFile.cpp107 int StSRecordFile::readHexByte(std::string & inString, int inIndex) argument
109 char nibbleCharHi= inString[inIndex];
110 char nibbleCharLo = inString[inIndex + 1];
H A DStExecutableImage.cpp108 //! \exception std::out_of_range is thrown if \a inIndex is out of range.
110 const StExecutableImage::MemoryRegion & StExecutableImage::getRegionAtIndex(unsigned inIndex) const
113 if (inIndex >= m_image.size())
114 throw std::out_of_range("inIndex");
121 if (i == inIndex)
H A DStExecutableImage.h185 //! \brief Returns a reference to the region specified by \a inIndex.
186 const MemoryRegion & getRegionAtIndex(unsigned inIndex) const;
/netbsd-current/external/bsd/libarchive/dist/libarchive/
H A Darchive_read_support_format_7zip.c159 uint64_t inIndex; member in struct:_7z_folder::__anon173
2072 if (parse_7zip_uint64(a, &(f->bindPairs[i].inIndex)) < 0)
2074 if (UMAX_ENTRY < f->bindPairs[i].inIndex)
2091 if (f->bindPairs[j].inIndex == i)
3577 if (folder->bindPairs[0].inIndex == 5) {

Completed in 105 milliseconds