Lines Matching refs:fn
236 struct gcov_fn_info *fn; in gcov_info_reset() local
238 list_for_each_entry(fn, &info->functions, head) in gcov_info_reset()
239 memset(fn->counters, 0, in gcov_info_reset()
240 sizeof(fn->counters[0]) * fn->num_counters); in gcov_info_reset()
298 static struct gcov_fn_info *gcov_fn_info_dup(struct gcov_fn_info *fn) in gcov_fn_info_dup() argument
301 struct gcov_fn_info *fn_dup = kmemdup(fn, sizeof(*fn), in gcov_fn_info_dup()
307 fn_dup->function_name = kstrdup(fn->function_name, GFP_KERNEL); in gcov_fn_info_dup()
311 cv_size = fn->num_counters * sizeof(fn->counters[0]); in gcov_fn_info_dup()
315 memcpy(fn_dup->counters, fn->counters, cv_size); in gcov_fn_info_dup()
335 struct gcov_fn_info *fn; in gcov_info_dup() local
346 list_for_each_entry(fn, &info->functions, head) { in gcov_info_dup()
347 struct gcov_fn_info *fn_dup = gcov_fn_info_dup(fn); in gcov_info_dup()
367 struct gcov_fn_info *fn, *tmp; in gcov_info_free() local
369 list_for_each_entry_safe(fn, tmp, &info->functions, head) { in gcov_info_free()
370 kfree(fn->function_name); in gcov_info_free()
371 vfree(fn->counters); in gcov_info_free()
372 list_del(&fn->head); in gcov_info_free()
373 kfree(fn); in gcov_info_free()