Home
last modified time | relevance | path

Searched refs:profile_hash (Results 1 – 2 of 2) sorted by relevance

/linux/tools/perf/
H A Dbuiltin-ftrace.c1195 static size_t profile_hash(long func, void *ctx __maybe_unused) in profile_hash() function
1211 ftrace->profile_hash = hashmap__new(profile_hash, profile_equal, NULL); in prepare_func_profile()
1212 if (ftrace->profile_hash == NULL) in prepare_func_profile()
1227 if (!hashmap__find(ftrace->profile_hash, func, &prof)) { in add_func_duration()
1240 hashmap__add(ftrace->profile_hash, key, prof); in add_func_duration()
1375 nr = hashmap__size(ftrace->profile_hash); in print_profile_result()
1386 hashmap__for_each_entry(ftrace->profile_hash, entry, bkt) in print_profile_result()
1408 hashmap__for_each_entry(ftrace->profile_hash, entry, bkt) { in print_profile_result()
1413 hashmap__free(ftrace->profile_hash); in print_profile_result()
1414 ftrace->profile_hash = NULL; in print_profile_result()
/linux/tools/perf/util/
H A Dftrace.h21 struct hashmap *profile_hash; member