/kernel/linux/linux-6.6/tools/perf/pmu-events/ |
H A D | empty-pmu-events.c | 19 .topic = "cache", 26 .topic = "other", 32 .topic = "other", 38 .topic = "other", 44 .topic = "uncore", 52 .topic = "uncore", 60 .topic = "uncore", 68 .topic = "uncore", 76 .topic = "uncore", 84 .topic [all...] |
H A D | jevents.py | 45 'name', 'topic', 'desc', 302 self.topic = '' 404 def read_json_events(path: str, topic: str) -> Sequence[JsonEvent]: 413 event.topic = topic 431 for event in read_json_events(item.path, topic=''): 438 def add_events_table_entries(item: os.DirEntry, topic: str) -> None: 440 for e in read_json_events(item.path, topic): 456 return (fix_none(j.pmu).replace(',','_'), fix_none(j.name), j.desc is not None, fix_none(j.topic), 558 def get_topic(topic [all...] |
H A D | pmu-events.h | 46 const char *topic; member
|
/kernel/linux/linux-6.6/tools/perf/tests/ |
H A D | pmu-events.c | 51 .topic = "branch", 63 .topic = "branch", 75 .topic = "other", 87 .topic = "other", 99 .topic = "other", 112 .topic = "cache", 133 .topic = "uncore", 147 .topic = "uncore", 161 .topic = "uncore", 175 .topic [all...] |
/kernel/linux/linux-6.6/drivers/accel/habanalabs/common/ |
H A D | memory_mgr.c | 165 behavior->topic, rc); in hl_mmap_mem_buf_alloc() 177 behavior->topic, rc); in hl_mmap_mem_buf_alloc() 257 buf->behavior->topic, user_mem_size, buf->mappable_size); 270 buf->behavior->topic, vma->vm_start); 279 buf->behavior->topic); 332 const char *topic; local 338 topic = buf->behavior->topic; 342 topic, id);
|
H A D | command_buffer.c | 259 .topic = "CB",
|
H A D | memory.c | 2133 .topic = "TS",
|
H A D | habanalabs.h | 895 * @topic: string identifier used for logging 904 const char *topic; member
|
/kernel/linux/linux-5.10/tools/perf/tests/ |
H A D | pmu-events.c | 36 .topic = "branch", 46 .topic = "branch", 56 .topic = "other", 66 .topic = "other", 76 .topic = "other", 94 .topic = "uncore", 106 .topic = "uncore", 188 if (!is_same(table->topic, te->topic)) { in test_pmu_event_table() 189 pr_debug2("testing event table %s: mismatched topic, in test_pmu_event_table() [all...] |
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | pmu.c | 264 perf_pmu_assign_str(old->name, "topic", &old->topic, &newalias->topic); in perf_pmu_update_alias() 282 zfree(&newalias->topic); in perf_pmu_free_alias() 310 char *long_desc, char *topic, in __perf_pmu__new_alias() 377 alias->topic = topic ? strdup(topic) : NULL; in __perf_pmu__new_alias() 780 (char *)pe->long_desc, (char *)pe->topic, in pmu_add_cpu_aliases_map() 1428 char *topic; member 308 __perf_pmu__new_alias(struct list_head *list, char *dir, char *name, char *desc, char *val, char *long_desc, char *topic, char *unit, char *perpkg, char *metric_expr, char *metric_name, char *deprecated) __perf_pmu__new_alias() argument 1495 char *topic = NULL; print_pmu_events() local [all...] |
H A D | pmu.h | 64 char *topic; member
|
/kernel/linux/linux-6.6/tools/perf/ |
H A D | builtin-list.c | 57 /** @last_topic: The last printed event topic. */ 98 static void default_print_event(void *ps, const char *pmu_name, const char *topic, in default_print_event() argument 117 (!topic || !strglobmatch_nocase(topic, print_state->event_glob))) in default_print_event() 128 if (strcmp(print_state->last_topic, topic ?: "")) { in default_print_event() 129 if (topic) in default_print_event() 130 printf("\n%s:\n", topic); in default_print_event() 132 print_state->last_topic = strdup(topic ?: ""); in default_print_event() 140 if (!topic && event_type_desc) { in default_print_event() 324 static void json_print_event(void *ps, const char *pmu_name, const char *topic, in json_print_event() argument [all...] |
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | pfm.c | 179 char topic[80], name[80]; in print_libpfm_event() local 184 snprintf(topic, sizeof(topic), "pfm %s", pinfo->name); in print_libpfm_event() 223 print_cb->print_event(print_state, pinfo->name, topic, in print_libpfm_event() 258 topic, in print_libpfm_event()
|
H A D | pmus.c | 353 const char *topic; member 370 ret = strcmp(as->topic ?: "", bs->topic ?: ""); in cmp_sevent() 426 COPY_STR(topic); in perf_pmus__print_pmu_events__callback() 477 aliases[j].topic, in perf_pmus__print_pmu_events() 492 zfree(&aliases[j].topic); in perf_pmus__print_pmu_events()
|
H A D | pmu.c | 50 * @topic: Optional topic such as cache or pipeline, particularly for 53 char *topic; member 405 zfree(&newalias->topic); in perf_pmu_free_alias() 484 assign_str(pe->name, "topic", &data->alias->topic, pe->topic); in update_alias() 506 const char *long_desc = NULL, *topic = NULL, *unit = NULL, *pmu_name = NULL; in perf_pmu__new_alias() local 516 topic = pe->topic; in perf_pmu__new_alias() [all...] |
H A D | print-events.h | 14 void (*print_event)(void *print_state, const char *topic,
|
H A D | pmu.h | 184 const char *topic; member
|
/kernel/linux/linux-5.10/tools/perf/pmu-events/ |
H A D | jevents.c | 293 static char *topic; variable 301 i = asprintf(&tp, "%s", topic); in get_topic() 323 free(topic); in add_topic() 324 topic = strdup(bname); in add_topic() 325 if (!topic) { in add_topic() 335 char *topic; member 350 char *topic = pd->topic; in print_events_table_entry() local 363 fprintf(outfp, "\t.topic = \"%s\",\n", topic); in print_events_table_entry() [all...] |
H A D | pmu-events.h | 17 const char *topic; member
|