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

/opengrok/src/org/opensolaris/opengrok/analysis/executables/
H A DELFAnalyzer.java95 MappedByteBuffer fmap = fch.map(FileChannel.MapMode.READ_ONLY, 0, fch.size());
96 ELFHeader eh = new ELFHeader(fmap);
103 fmap.position(eh.e_shoff + (eh.e_shstrndx * eh.e_shentsize));
104 ELFSection stringSection = new ELFSection(fmap);
117 fmap.position(eh.e_shoff + (i * eh.e_shentsize));
119 sections[i] = new ELFSection(fmap);
120 String sectionName = getName(stringSection.sh_offset, sections[i].sh_name, fmap);
135 fmap.position(sections[readables[i]].sh_offset);
139 c = fmap.get();
160 private String getName(int tab, int stroff, MappedByteBuffer fmap) { argument
199 ELFHeader(MappedByteBuffer fmap) argument
281 ELFSection(MappedByteBuffer fmap) argument
[all...]

Completed in 2081 milliseconds