Home
last modified time | relevance | path

Searched refs:section_name (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-12.1/contrib/binutils/binutils/
H A Daddr2line.c264 process_file (const char *file_name, const char *section_name, in process_file() argument
292 if (section_name != NULL) in process_file()
294 section = bfd_get_section_by_name (abfd, section_name); in process_file()
296 fatal (_("%s: cannot find section %s"), file_name, section_name); in process_file()
320 const char *section_name; in main() local
342 section_name = NULL; in main()
389 section_name = optarg; in main()
403 return process_file (file_name, section_name, target); in main()
H A Dobjdump.c2313 const char * section_name; member
2327 len = strlen (sought->section_name); in find_stabs_section()
2332 if (strncmp (sought->section_name, section->name, len) == 0 in find_stabs_section()
2355 s.section_name = stabsect_name; in dump_stabs_section()
2642 const char *section_name; in dump_reloc_set() local
2686 section_name = (*(q->sym_ptr_ptr))->section->name; in dump_reloc_set()
2691 section_name = NULL; in dump_reloc_set()
2705 if (section_name == NULL) in dump_reloc_set()
2706 section_name = "*unknown*"; in dump_reloc_set()
2707 printf ("[%s]", section_name); in dump_reloc_set()
/freebsd-12.1/contrib/gdb/gdb/
H A Ddsrec.c97 char *section_name = (char *) bfd_get_section_name (abfd, s); in load_srec() local
103 section_name, in load_srec()
128 if (ui_load_progress_hook (section_name, (unsigned long) i)) in load_srec()
141 if (ui_load_progress_hook (section_name, (unsigned long) i)) in load_srec()
H A Dcoff-pe-read.c58 read_pe_section_index (const char *section_name) in read_pe_section_index() argument
60 if (strcmp (section_name, ".text") == 0) in read_pe_section_index()
65 else if (strcmp (section_name, ".data") == 0) in read_pe_section_index()
70 else if (strcmp (section_name, ".bss") == 0) in read_pe_section_index()
H A Dcorelow.c435 static char *section_name = NULL; in get_core_register_section() local
440 xfree (section_name); in get_core_register_section()
442 section_name = xstrprintf ("%s/%d", name, PIDGET (inferior_ptid)); in get_core_register_section()
444 section_name = xstrdup (name); in get_core_register_section()
446 section = bfd_get_section_by_name (core_bfd, section_name); in get_core_register_section()
H A Dsymfile.c1272 get_section_index (struct objfile *objfile, char *section_name) in get_section_index() argument
1274 asection *sect = bfd_get_section_by_name (objfile->obfd, section_name); in get_section_index()
/freebsd-12.1/contrib/smbfs/examples/
H A Ddot.nsmbrc14 # [section_name]
18 # [section_name]
/freebsd-12.1/contrib/gdb/gdb/mi/
H A Dmi-main.h27 extern void mi_load_progress (const char *section_name,
H A Dmi-main.c1411 mi_load_progress (const char *section_name, in mi_load_progress() argument
1440 strcmp (previous_sect_name, section_name) : 1); in mi_load_progress()
1445 previous_sect_name = xstrdup (section_name); in mi_load_progress()
1451 ui_out_field_string (uiout, "section", section_name); in mi_load_progress()
1470 ui_out_field_string (uiout, "section", section_name); in mi_load_progress()
/freebsd-12.1/contrib/gdb/include/
H A Dieee.h155 char * section_name; member
/freebsd-12.1/contrib/binutils/include/
H A Dieee.h155 char * section_name; member
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1585 I->section_name = name; in GetSectionHeaderInfo()
1741 if (m_section_headers[i].section_name == ConstString(name)) in GetSectionIndexByName()
1977 ConstString &name = I->section_name; in CreateSections()
2902 const char *section_name = section->GetName().GetCString(); in RelocateSection() local
2904 if (section_name == nullptr) in RelocateSection()
2912 std::string needle = std::string(".rel") + section_name; in RelocateSection()
2913 std::string needlea = std::string(".rela") + section_name; in RelocateSection()
2918 const char *hay_name = I->section_name.GetCString(); in RelocateSection()
3274 const char *section_name = I->section_name.AsCString(""); in DumpELFSectionHeaders() local
3275 if (section_name) in DumpELFSectionHeaders()
[all …]
H A DObjectFileELF.h175 lldb_private::ConstString section_name; member
/freebsd-12.1/contrib/binutils/gas/config/
H A Dobj-coff.c1489 char *section_name; in obj_coff_section() local
1504 section_name = input_line_pointer; in obj_coff_section()
1507 name = xmalloc (input_line_pointer - section_name + 1); in obj_coff_section()
1508 strcpy (name, section_name); in obj_coff_section()
H A Dtc-ppc.c4534 char *section_name; in ppc_pe_section() local
4542 section_name = input_line_pointer; in ppc_pe_section()
4545 name = xmalloc (input_line_pointer - section_name + 1); in ppc_pe_section()
4546 strcpy (name, section_name); in ppc_pe_section()
/freebsd-12.1/contrib/elftoolchain/size/
H A Dsize.c683 char *section_name; in sysv_calc() local
685 section_name = elf_strptr(elf, elfhdr->e_shstrndx, in sysv_calc()
692 tbl_print(section_name, 0); in sysv_calc()
/freebsd-12.1/gnu/usr.bin/gdb/libgdb/
H A Dfbsd-threads.c437 char section_name[32]; in fbsd_thread_get_name() local
450 snprintf (section_name, sizeof (section_name), ".tname/%u", lwpid); in fbsd_thread_get_name()
451 section = bfd_get_section_by_name (core_bfd, section_name); in fbsd_thread_get_name()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp64 const ConstString section_name(".module_image"); in CreateImageSection() local
69 section_name, // Section name. in CreateImageSection()
/freebsd-12.1/contrib/binutils/bfd/
H A Dtekhex.c914 const char *section_name = symbol->section->name; in tekhex_print_symbol() local
919 section_name, symbol->name); in tekhex_print_symbol()
H A DpeXXigen.c942 const char * section_name; in _bfd_XXi_swap_scnhdr_out() member
974 for (p = known_sections; p->section_name; p++) in _bfd_XXi_swap_scnhdr_out()
975 if (strcmp (scnhdr_int->s_name, p->section_name) == 0) in _bfd_XXi_swap_scnhdr_out()
H A Delf64-alpha.c4044 const char *section_name; in elf64_alpha_relocate_section() local
4045 section_name = (bfd_elf_string_from_elf_section in elf64_alpha_relocate_section()
4048 BFD_ASSERT(section_name != NULL); in elf64_alpha_relocate_section()
4049 srel = bfd_get_section_by_name (dynobj, section_name); in elf64_alpha_relocate_section()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectMemory.cpp1729 ConstString section_name; in DoExecute() local
1736 section_name = section_sp->GetName(); in DoExecute()
1747 section_name ? " " : "", section_name.AsCString("")); in DoExecute()
/freebsd-12.1/contrib/binutils/ld/
H A Dldlang.h339 const char *section_name; member
H A Dldlang.c2144 const char *section_name; in wild_sort() local
2151 section_name = bfd_get_section_name (file->the_bfd, section); in wild_sort()
3311 (s->address_statement.section_name)); in map_input_to_output_sections()
3748 minfo (_("Address of section %s set to "), address->section_name); in print_address_statement()
5888 ad->section_name = name; in lang_section_start()
/freebsd-12.1/contrib/binutils/ld/emultempl/
H A Dlinux.em96 && strcmp (s->address_statement.section_name, ".text") == 0)

12