• Home
  • Raw
  • Download

Lines Matching refs:head

58 	struct list_head head;  member
68 struct list_head head; member
89 INIT_LIST_HEAD(&info->head); in llvm_gcov_init()
94 list_add_tail(&info->head, &clang_gcov_list); in llvm_gcov_init()
120 INIT_LIST_HEAD(&info->head); in llvm_gcda_emit_function()
124 list_add_tail(&info->head, &current_info->functions); in llvm_gcda_emit_function()
131 struct gcov_fn_info, head); in llvm_gcda_emit_arcs()
177 struct gcov_info, head); in gcov_info_next()
178 if (list_is_last(&info->head, &clang_gcov_list)) in gcov_info_next()
180 return list_next_entry(info, head); in gcov_info_next()
189 list_add_tail(&info->head, &clang_gcov_list); in gcov_info_link()
200 __list_del_entry(&info->head); in gcov_info_unlink()
229 list_for_each_entry(fn, &info->functions, head) in gcov_info_reset()
244 &info1->functions, struct gcov_fn_info, head); in gcov_info_is_compatible()
246 &info2->functions, struct gcov_fn_info, head); in gcov_info_is_compatible()
252 while (!list_is_last(&fn_ptr1->head, &info1->functions) && in gcov_info_is_compatible()
253 !list_is_last(&fn_ptr2->head, &info2->functions)) { in gcov_info_is_compatible()
258 fn_ptr1 = list_next_entry(fn_ptr1, head); in gcov_info_is_compatible()
259 fn_ptr2 = list_next_entry(fn_ptr2, head); in gcov_info_is_compatible()
261 return 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()
276 struct gcov_fn_info, head); in gcov_info_add()
278 list_for_each_entry(dfn_ptr, &dst->functions, head) { in gcov_info_add()
284 sfn_ptr = list_next_entry(sfn_ptr, head); in gcov_info_add()
295 INIT_LIST_HEAD(&fn_dup->head); in gcov_fn_info_dup()
323 INIT_LIST_HEAD(&dup->head); in gcov_info_dup()
329 list_for_each_entry(fn, &info->functions, head) { in gcov_info_dup()
334 list_add_tail(&fn_dup->head, &dup->functions); in gcov_info_dup()
352 list_for_each_entry_safe(fn, tmp, &info->functions, head) { in gcov_info_free()
354 list_del(&fn->head); in gcov_info_free()
378 list_for_each_entry(fi_ptr, &info->functions, head) { in convert_to_gcda()