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