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

/opengrok-sun/src/org/opensolaris/opengrok/analysis/executables/
H A DELFAnalyzer.java102 MappedByteBuffer fmap = fch.map(FileChannel.MapMode.READ_ONLY, 0, fch.size());
103 ELFHeader eh = new ELFHeader(fmap);
110 fmap.position(eh.e_shoff + (eh.e_shstrndx * eh.e_shentsize));
111 ELFSection stringSection = new ELFSection(fmap);
124 fmap.position(eh.e_shoff + (i * eh.e_shentsize));
126 sections[i] = new ELFSection(fmap);
127 String sectionName = getName(stringSection.sh_offset, sections[i].sh_name, fmap);
142 fmap.position(sections[readables[i]].sh_offset);
146 c = fmap.get();
168 private String getName(int tab, int stroff, MappedByteBuffer fmap) { argument
236 ELFHeader(MappedByteBuffer fmap) argument
318 ELFSection(MappedByteBuffer fmap) argument
[all...]

Completed in 741 milliseconds