Searched refs:profile_hash (Results 1 – 2 of 2) sorted by relevance
| /linux/tools/perf/ |
| H A D | builtin-ftrace.c | 1196 static size_t profile_hash(long func, void *ctx __maybe_unused) in profile_hash() function 1212 ftrace->profile_hash = hashmap__new(profile_hash, profile_equal, NULL); in prepare_func_profile() 1213 if (IS_ERR(ftrace->profile_hash)) { in prepare_func_profile() 1214 int err = PTR_ERR(ftrace->profile_hash); in prepare_func_profile() 1216 ftrace->profile_hash = NULL; in prepare_func_profile() 1232 if (!hashmap__find(ftrace->profile_hash, func, &prof)) { in add_func_duration() 1245 hashmap__add(ftrace->profile_hash, key, prof); in add_func_duration() 1380 nr = hashmap__size(ftrace->profile_hash); in print_profile_result() 1391 hashmap__for_each_entry(ftrace->profile_hash, entry, bkt) in print_profile_result() 1413 hashmap__for_each_entry(ftrace->profile_hash, entry, bkt) { in print_profile_result() [all …]
|
| /linux/tools/perf/util/ |
| H A D | ftrace.h | 21 struct hashmap *profile_hash; member
|