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

/opengrok/src/org/opensolaris/opengrok/analysis/executables/
H A DELFAnalyzer.java200 if (fmap.get(ELFIdentification.EI_MAG0.value()) != 0x7f ||
201 fmap.get(ELFIdentification.EI_MAG1.value()) != 'E' ||
202 fmap.get(ELFIdentification.EI_MAG2.value()) != 'L' ||
203 fmap.get(ELFIdentification.EI_MAG3.value()) != 'F') {
207 ei_class = EI_Class.valueOf(fmap.get(ELFIdentification.EI_CLASS.value()));
208 ei_data = EI_Data.valueOf(fmap.get(ELFIdentification.EI_DATA.value()));
209 ei_version = fmap.get(ELFIdentification.EI_VERSION.value());
217 fmap.position(ELFIdentification.EI_NIDENT.value());
300 private static enum ELFIdentification { enum in class:ELFAnalyzer
313 private ELFIdentification(in method in class:ELFAnalyzer.ELFIdentification
[all...]

Completed in 647 milliseconds