Lines Matching refs:r_debug_info_module
387 struct r_debug_info_module *r_debug_info_module = NULL; in report_r_debug() local
393 r_debug_info_module = malloc (sizeof (*r_debug_info_module) in report_r_debug()
395 if (unlikely (r_debug_info_module == NULL)) in report_r_debug()
398 r_debug_info_module->fd = -1; in report_r_debug()
399 r_debug_info_module->elf = NULL; in report_r_debug()
400 r_debug_info_module->l_ld = l_ld; in report_r_debug()
401 r_debug_info_module->start = 0; in report_r_debug()
402 r_debug_info_module->end = 0; in report_r_debug()
403 r_debug_info_module->disk_file_has_build_id = false; in report_r_debug()
404 strcpy (r_debug_info_module->name, name1); in report_r_debug()
405 r_debug_info_module->next = r_debug_info->module; in report_r_debug()
406 r_debug_info->module = r_debug_info_module; in report_r_debug()
433 if (r_debug_info_module != NULL) in report_r_debug()
434 r_debug_info_module->disk_file_has_build_id = true; in report_r_debug()
469 if (r_debug_info_module == NULL) in report_r_debug()
483 &r_debug_info_module->start, in report_r_debug()
484 &r_debug_info_module->end, in report_r_debug()
487 r_debug_info_module->elf = elf; in report_r_debug()
488 r_debug_info_module->fd = fd; in report_r_debug()