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