Lines Matching defs:perf_env
53 struct perf_env { struct
54 char *hostname;
55 char *os_release;
56 char *version;
57 char *arch;
58 int nr_cpus_online;
59 int nr_cpus_avail;
60 char *cpu_desc;
61 char *cpuid;
62 unsigned long long total_mem;
63 unsigned int msr_pmu_type;
64 unsigned int max_branches;
65 int kernel_is_64_bit;
67 int nr_cmdline;
68 int nr_sibling_cores;
69 int nr_sibling_dies;
70 int nr_sibling_threads;
71 int nr_numa_nodes;
72 int nr_memory_nodes;
73 int nr_pmu_mappings;
74 int nr_groups;
75 int nr_cpu_pmu_caps;
76 int nr_hybrid_nodes;
77 int nr_pmus_with_caps;
78 char *cmdline;
79 const char **cmdline_argv;
80 char *sibling_cores;
81 char *sibling_dies;
82 char *sibling_threads;
83 char *pmu_mappings;
84 char **cpu_pmu_caps;
85 struct cpu_topology_map *cpu;
86 struct cpu_cache_level *caches;
87 int caches_cnt;
88 u32 comp_ratio;
89 u32 comp_ver;
90 u32 comp_type;
91 u32 comp_level;
92 u32 comp_mmap_len;
93 struct numa_node *numa_nodes;
117 /* For fast cpu to numa node lookup via perf_env__numa_node */ argument
118 int *numa_map;
119 int nr_numa_map;
144 extern struct perf_env perf_env; argument