/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
pmu.c | 9 #include "pmu.h" 72 * Reading/parsing the default pmu format definition, which should be 162 * Reading the pmu event aliases definition, which should be located at: 207 * Reading/parsing the default pmu type value, which should be 240 /* Add all pmus in sysfs to pmu list: */ 298 struct perf_pmu *pmu; local 304 * The pmu data we store & need consists of the pmu 317 pmu = zalloc(sizeof(*pmu)); 335 struct perf_pmu *pmu; local 361 struct perf_pmu *pmu; local 591 struct perf_pmu *pmu; local [all...] |
pmu.h | 26 int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr, 31 int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms); 32 struct list_head *perf_pmu__alias(struct perf_pmu *pmu, 42 struct perf_pmu *perf_pmu__scan(struct perf_pmu *pmu);
|
pmu-bison.c | 77 #line 5 "util/pmu.y" 84 #include "pmu.h" 97 #line 98 "util/pmu-bison.c" 139 #line 30 "util/pmu.y" 147 #line 148 "util/pmu-bison.c" 159 #line 160 "util/pmu-bison.c" [all...] |
parse-events.h | 98 char *pmu , struct list_head *head_config);
|
parse-events.c | 17 #include "pmu.h" 635 struct perf_pmu *pmu; local 637 pmu = perf_pmu__find(name); 638 if (!pmu) 643 if (perf_pmu__check_alias(pmu, head_config)) 652 if (perf_pmu__config(pmu, &attr, head_config)) 656 pmu->cpus);
|
header.c | 21 #include "pmu.h" 1038 struct perf_pmu *pmu = NULL; local 1048 while ((pmu = perf_pmu__scan(pmu))) { 1049 if (!pmu->name) 1053 ret = do_write(fd, &pmu->type, sizeof(pmu->type)); 1057 ret = do_write_string(fd, pmu->name); 1449 const char *delimiter = "# pmu mappings: "; 1456 fprintf(fp, "# pmu mappings: not available\n") [all...] |
/external/linux-tools-perf/perf-3.12.0/include/linux/ |
perf_event.h | 89 * extra PMU register associated with an event 165 * Common implementation detail of pmu::{start,commit,cancel}_txn 170 * struct pmu - generic performance monitoring unit 172 struct pmu { struct 186 * Fully disable/enable this PMU, can be used to protect from the PMI 189 void (*pmu_enable) (struct pmu *pmu); /* optional */ 190 void (*pmu_disable) (struct pmu *pmu); /* optional */ 193 * Try and initialize the event for this PMU 326 struct pmu *pmu; member in struct:perf_event 453 struct pmu *pmu; member in struct:perf_event_context [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/ |
Makefile | 191 $(OUTPUT)util/pmu-flex.c: util/pmu.l $(OUTPUT)util/pmu-bison.c 192 $(QUIET_FLEX)$(FLEX) --header-file=$(OUTPUT)util/pmu-flex.h -t util/pmu.l > $(OUTPUT)util/pmu-flex.c 194 $(OUTPUT)util/pmu-bison.c: util/pmu.y 195 $(QUIET_BISON)$(BISON) -v util/pmu.y -d -o $(OUTPUT)util/pmu-bison.c -p perf_pmu [all...] |
Android.mk | 79 util/pmu.c \ 80 util/pmu-bison.c \ 81 util/pmu-flex.c \
|
/external/linux-tools-perf/perf-3.12.0/arch/x86/include/asm/ |
kvm_host.h | 477 struct kvm_pmu pmu; member in struct:kvm_vcpu_arch
|