Lines Matching refs:r_debug_info_module
389 struct r_debug_info_module *r_debug_info_module = NULL;
395 r_debug_info_module = malloc (sizeof (*r_debug_info_module)
397 if (unlikely (r_debug_info_module == NULL))
400 r_debug_info_module->fd = -1;
401 r_debug_info_module->elf = NULL;
402 r_debug_info_module->l_ld = l_ld;
403 r_debug_info_module->start = 0;
404 r_debug_info_module->end = 0;
405 r_debug_info_module->disk_file_has_build_id = false;
406 strcpy (r_debug_info_module->name, name1);
407 r_debug_info_module->next = r_debug_info->module;
408 r_debug_info->module = r_debug_info_module;
435 if (r_debug_info_module != NULL)
436 r_debug_info_module->disk_file_has_build_id = true;
471 if (r_debug_info_module == NULL)
485 &r_debug_info_module->start,
486 &r_debug_info_module->end,
489 r_debug_info_module->elf = elf;
490 r_debug_info_module->fd = fd;