Home | History | Annotate | Download | only in libdwfl

Lines Matching defs:r_debug_info_module

372       struct r_debug_info_module *r_debug_info_module = NULL;
378 r_debug_info_module = malloc (sizeof (*r_debug_info_module)
380 if (unlikely (r_debug_info_module == NULL))
382 r_debug_info_module->fd = -1;
383 r_debug_info_module->elf = NULL;
384 r_debug_info_module->l_ld = l_ld;
385 r_debug_info_module->start = 0;
386 r_debug_info_module->end = 0;
387 r_debug_info_module->disk_file_has_build_id = false;
388 strcpy (r_debug_info_module->name, name1);
389 r_debug_info_module->next = r_debug_info->module;
390 r_debug_info->module = r_debug_info_module;
417 if (r_debug_info_module != NULL)
418 r_debug_info_module->disk_file_has_build_id = true;
450 if (r_debug_info_module == NULL)
464 &r_debug_info_module->start,
465 &r_debug_info_module->end,
468 r_debug_info_module->elf = elf;
469 r_debug_info_module->fd = fd;