Cpu.fromData constructor

Cpu.fromData(
  1. int processor,
  2. String vendor_id,
  3. int cpu_family,
  4. int model,
  5. String model_name,
  6. int stepping,
  7. int microcode,
  8. double cpu_mhz,
  9. String cache_size,
  10. int physical_id,
  11. int siblings,
  12. int core_id,
  13. int cpu_cores,
  14. int apicid,
  15. int initial_apicid,
  16. bool fpu,
  17. bool fpu_exception,
  18. int cpuid_level,
  19. bool wp,
  20. List<String> flags,
  21. double bogomips,
  22. int clflush_size,
  23. int cache_alignment,
  24. Tuple2<String, String> address_sizes,
)

Constructor for creating a Cpu with data in it

Implementation

Cpu.fromData(
    this.processor,
    this.vendor_id,
    this.cpu_family,
    this.model,
    this.model_name,
    this.stepping,
    this.microcode,
    this.cpu_mhz,
    this.cache_size,
    this.physical_id,
    this.siblings,
    this.core_id,
    this.cpu_cores,
    this.apicid,
    this.initial_apicid,
    this.fpu,
    this.fpu_exception,
    this.cpuid_level,
    this.wp,
    this.flags,
    this.bogomips,
    this.clflush_size,
    this.cache_alignment,
    this.address_sizes);