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.c1197 static size_t profile_hash(long func, void *ctx __maybe_unused) in profile_hash() function
1213 ftrace->profile_hash = hashmap__new(profile_hash, profile_equal, NULL); in prepare_func_profile()
1214 if (IS_ERR(ftrace->profile_hash)) { in prepare_func_profile()
1215 int err = PTR_ERR(ftrace->profile_hash); in prepare_func_profile()
1217 ftrace->profile_hash = NULL; in prepare_func_profile()
1233 if (!hashmap__find(ftrace->profile_hash, func, &prof)) { in add_func_duration()
1246 hashmap__add(ftrace->profile_hash, key, prof); in add_func_duration()
1381 nr = hashmap__size(ftrace->profile_hash); in print_profile_result()
1392 hashmap__for_each_entry(ftrace->profile_hash, entry, bkt) in print_profile_result()
1414 hashmap__for_each_entry(ftrace->profile_hash, entry, bkt) { in print_profile_result()
[all …]
/linux/tools/perf/util/
H A Dftrace.h21 struct hashmap *profile_hash; member