Lines Matching refs:value

249             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());
286 + e_machine.value() + "\ne_version: " + e_version + "\ne_entry: "
428 private final int value;
430 private ELFIdentification(int value) {
431 this.value = value;
434 public int value() {
435 return this.value;
448 private final int value;
450 private EI_Class(int value) {
451 this.value = value;
454 static EI_Class valueOf(byte value) throws IllegalArgumentException {
455 switch (value) {
460 throw new IllegalArgumentException("Invalid EI_CLASS value:"
461 + value);
467 return textual[value];
476 static EI_Data valueOf(byte value) throws IllegalArgumentException {
477 switch (value) {
482 throw new IllegalArgumentException("Invalid EI_DATA value:"
483 + value);
500 private final int value;
502 private E_Type(int value) {
503 this.value = value;
506 static E_Type valueOf(short value) {
507 switch (value) {
518 public int value() {
519 return this.value;
524 if (value == ET_UNKNOWN.value()) {
527 return textual[value];
548 private final int value;
550 private E_Machine(int value) {
551 this.value = value;
554 static E_Machine valueOf(short value) {
555 switch (value) {
569 public int value() {
570 return this.value;
575 if (value == EM_UNKNOWN.value()) {
578 return textual[value];
590 private final int value;
592 private E_Version(int value) {
593 this.value = value;
596 static E_Version valueOf(int value) throws IllegalArgumentException {
597 switch (value) {
602 + "version number: " + value);
608 return textual[value];