• Home
  • Raw
  • Download

Lines Matching refs:head

59 	struct list_head head;  member
69 struct list_head head; member
92 INIT_LIST_HEAD(&info->head); in llvm_gcov_init()
97 list_add_tail(&info->head, &clang_gcov_list); in llvm_gcov_init()
125 INIT_LIST_HEAD(&info->head); in llvm_gcda_emit_function()
133 list_add_tail(&info->head, &current_info->functions); in llvm_gcda_emit_function()
140 struct gcov_fn_info, head); in llvm_gcda_emit_arcs()
186 struct gcov_info, head); in gcov_info_next()
187 if (list_is_last(&info->head, &clang_gcov_list)) in gcov_info_next()
189 return list_next_entry(info, head); in gcov_info_next()
198 list_add_tail(&info->head, &clang_gcov_list); in gcov_info_link()
209 __list_del_entry(&info->head); in gcov_info_unlink()
238 list_for_each_entry(fn, &info->functions, head) in gcov_info_reset()
253 &info1->functions, struct gcov_fn_info, head); in gcov_info_is_compatible()
255 &info2->functions, struct gcov_fn_info, head); in gcov_info_is_compatible()
261 while (!list_is_last(&fn_ptr1->head, &info1->functions) && in gcov_info_is_compatible()
262 !list_is_last(&fn_ptr2->head, &info2->functions)) { in gcov_info_is_compatible()
270 fn_ptr1 = list_next_entry(fn_ptr1, head); in gcov_info_is_compatible()
271 fn_ptr2 = list_next_entry(fn_ptr2, head); in gcov_info_is_compatible()
273 return list_is_last(&fn_ptr1->head, &info1->functions) && in gcov_info_is_compatible()
274 list_is_last(&fn_ptr2->head, &info2->functions); in gcov_info_is_compatible()
288 struct gcov_fn_info, head); in gcov_info_add()
290 list_for_each_entry(dfn_ptr, &dst->functions, head) { in gcov_info_add()
305 INIT_LIST_HEAD(&fn_dup->head); in gcov_fn_info_dup()
340 INIT_LIST_HEAD(&dup->head); in gcov_info_dup()
346 list_for_each_entry(fn, &info->functions, head) { in gcov_info_dup()
351 list_add_tail(&fn_dup->head, &dup->functions); in gcov_info_dup()
369 list_for_each_entry_safe(fn, tmp, &info->functions, head) { in gcov_info_free()
372 list_del(&fn->head); in gcov_info_free()
461 list_for_each_entry(fi_ptr, &info->functions, head) { in convert_to_gcda()