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

/opengrok-jel/src/org/opensolaris/opengrok/analysis/executables/
H A DELFAnalyzer.java249 if (fmap.get(ELFIdentification.EI_MAG0.value()) != 0x7f ||
250 fmap.get(ELFIdentification.EI_MAG1.value()) != 'E' ||
251 fmap.get(ELFIdentification.EI_MAG2.value()) != 'L' ||
252 fmap.get(ELFIdentification.EI_MAG3.value()) != 'F') {
256 ei_class = EI_Class.valueOf(fmap.get(ELFIdentification.EI_CLASS.value()));
257 ei_data = EI_Data.valueOf(fmap.get(ELFIdentification.EI_DATA.value()));
258 ei_version = fmap.get(ELFIdentification.EI_VERSION.value());
266 fmap.position(ELFIdentification.EI_NIDENT.value());
417 private static enum ELFIdentification { enum in class:ELFAnalyzer
430 private ELFIdentification(in method in class:ELFAnalyzer.ELFIdentification
[all...]

Completed in 6 milliseconds