Lines Matching refs:value

237             if (fmap.get(ELFIdentification.EI_MAG0.value()) != 0x7f ||
238 fmap.get(ELFIdentification.EI_MAG1.value()) != 'E' ||
239 fmap.get(ELFIdentification.EI_MAG2.value()) != 'L' ||
240 fmap.get(ELFIdentification.EI_MAG3.value()) != 'F') {
244 ei_class = EI_Class.valueOf(fmap.get(ELFIdentification.EI_CLASS.value()));
245 ei_data = EI_Data.valueOf(fmap.get(ELFIdentification.EI_DATA.value()));
246 ei_version = fmap.get(ELFIdentification.EI_VERSION.value());
254 fmap.position(ELFIdentification.EI_NIDENT.value());
272 return (e_machine.toString() + " " + ei_class.toString() + " " + "\ne_type: " + e_type.toString() + "\ne_machine: " + e_machine.value() + "\ne_version: " + e_version + "\ne_entry: " + e_entry + "\ne_phoff: " + e_phoff + "\ne_shoff: " + e_shoff + "\ne_flags: " + e_flags + "\ne_ehsize: " + e_ehsize + "\ne_phentsize:" + e_phentsize + "\ne_phnum: " + e_phnum + "\ne_shentsize" + e_shentsize + "\ne_shnum: " + e_shnum + "\ne_shstrndx: " + e_shstrndx);
348 private final int value;
350 private ELFIdentification(int value) {
351 this.value = value;
354 public int value() {
355 return this.value;
368 private final int value;
370 private EI_Class(int value) {
371 this.value = value;
374 static EI_Class valueOf(byte value) throws IllegalArgumentException {
375 switch (value) {
380 throw new IllegalArgumentException("Invalid EI_CLASS value:" + value);
384 public int value() {
385 return this.value;
390 return textual[value];
399 private final int value;
401 private EI_Data(int value) {
402 this.value = value;
405 static EI_Data valueOf(byte value) throws IllegalArgumentException {
406 switch (value) {
411 throw new IllegalArgumentException("Invalid EI_DATA value:" + value);
415 public int value() {
416 return this.value;
432 private final int value;
434 private E_Type(int value) {
435 this.value = value;
438 static E_Type valueOf(short value) {
439 switch (value) {
450 public int value() {
451 return this.value;
456 if (value == ET_UNKNOWN.value()) {
459 return textual[value];
480 private final int value;
482 private E_Machine(int value) {
483 this.value = value;
486 static E_Machine valueOf(short value) {
487 switch (value) {
501 public int value() {
502 return this.value;
507 if (value == EM_UNKNOWN.value()) {
510 return textual[value];
522 private final int value;
524 private E_Version(int value) {
525 this.value = value;
528 static E_Version valueOf(int value) throws IllegalArgumentException {
529 switch (value) {
533 throw new IllegalArgumentException("Illegal (or unknown) version number: " + value);
537 public int value() {
538 return this.value;
543 return textual[value];