Searched defs:fmap (Results 1 - 1 of 1) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/analysis/executables/
H A DELFAnalyzer.java116 MappedByteBuffer fmap =
118 ELFHeader eh = new ELFHeader(fmap);
125 fmap.position(eh.e_shoff + (eh.e_shstrndx * eh.e_shentsize));
126 ELFSection stringSection = new ELFSection(fmap);
139 fmap.position(eh.e_shoff + (i * eh.e_shentsize));
141 sections[i] = new ELFSection(fmap);
143 getName(stringSection.sh_offset, sections[i].sh_name, fmap);
158 fmap.position(sections[readables[i]].sh_offset);
162 c = fmap.get();
184 private static String getName(int tab, int stroff, MappedByteBuffer fmap) { argument
248 ELFHeader(MappedByteBuffer fmap) argument
393 ELFSection(MappedByteBuffer fmap) argument
[all...]

Completed in 10 milliseconds