Lines Matching defs:perf_env
59 struct perf_env { struct
60 char *hostname;
61 char *os_release;
62 char *version;
63 char *arch;
64 int nr_cpus_online;
65 int nr_cpus_avail;
66 char *cpu_desc;
67 char *cpuid;
68 unsigned long long total_mem;
69 unsigned int msr_pmu_type;
70 unsigned int max_branches;
71 unsigned int br_cntr_nr;
72 unsigned int br_cntr_width;
73 int kernel_is_64_bit;
75 int nr_cmdline;
76 int nr_sibling_cores;
77 int nr_sibling_dies;
78 int nr_sibling_threads;
79 int nr_numa_nodes;
80 int nr_memory_nodes;
81 int nr_pmu_mappings;
82 int nr_groups;
83 int nr_cpu_pmu_caps;
84 int nr_hybrid_nodes;
85 int nr_pmus_with_caps;
86 char *cmdline;
87 const char **cmdline_argv;
88 char *sibling_cores;
89 char *sibling_dies;
90 char *sibling_threads;
91 char *pmu_mappings;
92 char **cpu_pmu_caps;
93 struct cpu_topology_map *cpu;
94 struct cpu_cache_level *caches;
95 int caches_cnt;
96 u32 comp_ratio;
97 u32 comp_ver;
98 u32 comp_type;
99 u32 comp_level;
100 u32 comp_mmap_len;
101 struct numa_node *numa_nodes;
125 /* For fast cpu to numa node lookup via perf_env__numa_node */ argument
126 int *numa_map;
127 int nr_numa_map;
153 extern struct perf_env perf_env; argument