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