Lines Matching refs:r_debug_info_module
388 struct r_debug_info_module *r_debug_info_module = NULL; in report_r_debug() local
394 r_debug_info_module = malloc (sizeof (*r_debug_info_module) in report_r_debug()
396 if (unlikely (r_debug_info_module == NULL)) in report_r_debug()
399 r_debug_info_module->fd = -1; in report_r_debug()
400 r_debug_info_module->elf = NULL; in report_r_debug()
401 r_debug_info_module->l_ld = l_ld; in report_r_debug()
402 r_debug_info_module->start = 0; in report_r_debug()
403 r_debug_info_module->end = 0; in report_r_debug()
404 r_debug_info_module->disk_file_has_build_id = false; in report_r_debug()
405 strcpy (r_debug_info_module->name, name1); in report_r_debug()
406 r_debug_info_module->next = r_debug_info->module; in report_r_debug()
407 r_debug_info->module = r_debug_info_module; in report_r_debug()
434 if (r_debug_info_module != NULL) in report_r_debug()
435 r_debug_info_module->disk_file_has_build_id = true; in report_r_debug()
470 if (r_debug_info_module == NULL) in report_r_debug()
484 &r_debug_info_module->start, in report_r_debug()
485 &r_debug_info_module->end, in report_r_debug()
488 r_debug_info_module->elf = elf; in report_r_debug()
489 r_debug_info_module->fd = fd; in report_r_debug()