Home
last modified time | relevance | path

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

1234

/openbsd/src/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/
DSimple.pm1242 my $section_name; # set to arrayref if found
1250 my @section_name = ($2); # might be 0-length
1257 push @section_name, splice @ell_content, 1+$j;
1261 @section_name = grep ref($_)||length($_), @section_name ;
1264 if(@section_name
1265 and !ref($section_name[0]) and !ref($section_name[-1])
1266 and $section_name[ 0] =~ m/^\"/s
1267 and $section_name[-1] =~ m/\"$/s
1269 @section_name == 1 and $section_name[0] eq '"'
1272 $section_name[ 0] =~ s/^\"//s;
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/binutils/
Daddr2line.c277 process_file (const char *file_name, const char *section_name, in process_file() argument
305 if (section_name != NULL) in process_file()
307 section = bfd_get_section_by_name (abfd, section_name); in process_file()
309 fatal (_("%s: cannot find section %s"), file_name, section_name); in process_file()
331 const char *section_name; in main() local
356 section_name = NULL; in main()
406 section_name = optarg; in main()
420 process_file (file_name, section_name, target); in main()
/openbsd/src/gnu/usr.bin/binutils/gdb/
Ddsrec.c97 char *section_name = (char *) bfd_get_section_name (abfd, s); in load_srec() local
103 section_name, in load_srec()
128 if (deprecated_ui_load_progress_hook (section_name, in load_srec()
142 if (deprecated_ui_load_progress_hook (section_name, in load_srec()
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()
Dcorelow.c448 char section_name[100]; in get_core_register_section() local
454 sprintf (section_name, "%s/%d", name, PIDGET (inferior_ptid)); in get_core_register_section()
456 strcpy (section_name, name); in get_core_register_section()
458 section = bfd_get_section_by_name (core_bfd, section_name); in get_core_register_section()
/openbsd/src/gnu/usr.bin/binutils-2.17/include/coff/
Dapollo.h70 #define s_zeroes section_name.s_name
71 #define s_offset (section_name.s_name+4)
/openbsd/src/gnu/usr.bin/binutils/include/coff/
Dapollo.h70 #define s_zeroes section_name.s_name
71 #define s_offset (section_name.s_name+4)
/openbsd/src/gnu/usr.bin/binutils-2.17/bfd/
Daout-adobe.c81 char *section_name; in aout_adobe_callback() local
108 section_name = ".text"; in aout_adobe_callback()
113 section_name = ".data"; in aout_adobe_callback()
118 section_name = ".bss"; in aout_adobe_callback()
135 sect = bfd_make_section (abfd, section_name); in aout_adobe_callback()
143 sprintf (try_again, "%s%d", section_name, ++trynum); in aout_adobe_callback()
/openbsd/src/gnu/usr.bin/binutils/bfd/
Daout-adobe.c158 char *section_name; local
185 section_name = ".text";
190 section_name = ".data";
195 section_name = ".bss";
212 sect = bfd_make_section (abfd, section_name);
220 sprintf (try_again, "%s%d", section_name, ++trynum);
/openbsd/src/gnu/usr.bin/perl/
Dautodoc.pl1637 for my $section_name (sort dictionary_order keys %valid_sections) {
1638 my $section_info = $dochash->{$section_name};
1642 warn "Empty section '$section_name' for $podname; skipped";
1646 print $fh "\n=head1 $section_name\n";
1655 print $fh "\n", $valid_sections{$section_name}{header}, "\n"
1656 if defined $valid_sections{$section_name}{header};
1674 $section_name, "\n";
1677 print $fh "\n", $valid_sections{$section_name}{footer}, "\n"
1679 && defined $valid_sections{$section_name}{footer};
/openbsd/src/gnu/usr.bin/texinfo/makeinfo/
Dfloat.c75 new->section_name = current_sectioning_name (); in add_new_float()
77 new->section_name = ""; in add_new_float()
386 insert_string (expansion (temp->section_name, 0)); in cm_listoffloats()
Dindex.h38 char *section_name; /* ... and its title. */ member
Dfloat.h35 char *section_name; member
Dindex.c196 new->section_name = current_sectioning_name (); in index_add_arg()
198 new->section_name = ""; in index_add_arg()
203 new->section_name = NULL; in index_add_arg()
927 insert_string (expansion (index->section_name, 0)); in cm_printindex()
/openbsd/src/gnu/llvm/llvm/utils/
Dextract-section.py32 def get_raw_section_dump(readobj_path, section_name, input_file): argument
34 cmd = [readobj_path, '--elf-output-style=GNU', '--hex-dump={}'.format(section_name),
/openbsd/src/gnu/usr.bin/binutils/gdb/mi/
Dmi-main.h27 extern void mi_load_progress (const char *section_name,
Dmi-main.c1364 mi_load_progress (const char *section_name, in mi_load_progress() argument
1393 strcmp (previous_sect_name, section_name) : 1); in mi_load_progress()
1398 previous_sect_name = xstrdup (section_name); in mi_load_progress()
1404 ui_out_field_string (uiout, "section", section_name); in mi_load_progress()
1423 ui_out_field_string (uiout, "section", section_name); in mi_load_progress()
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/wasm/
DObjectFileWasm.cpp302 ConstString section_name; in CreateSections() local
309 section_name = ConstString("code"); in CreateSections()
320 section_name = sect_info.name; in CreateSections()
332 section_name, // Section name. in CreateSections()
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp1443 ConstString section_name) { in GetSectionType() argument
1482 if (section_name == g_sect_name_dwarf_debug_abbrev) in GetSectionType()
1484 if (section_name == g_sect_name_dwarf_debug_aranges) in GetSectionType()
1486 if (section_name == g_sect_name_dwarf_debug_frame) in GetSectionType()
1488 if (section_name == g_sect_name_dwarf_debug_info) in GetSectionType()
1490 if (section_name == g_sect_name_dwarf_debug_line) in GetSectionType()
1492 if (section_name == g_sect_name_dwarf_debug_loc) in GetSectionType()
1494 if (section_name == g_sect_name_dwarf_debug_loclists) in GetSectionType()
1496 if (section_name == g_sect_name_dwarf_debug_macinfo) in GetSectionType()
1498 if (section_name == g_sect_name_dwarf_debug_names) in GetSectionType()
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/include/
Dieee.h155 char * section_name; member
/openbsd/src/gnu/usr.bin/binutils/include/
Dieee.h155 char * section_name; member
/openbsd/src/gnu/usr.bin/binutils/binutils/
Dobjdump.c2022 const char * section_name; member
2036 len = strlen (sought->section_name); in find_stabs_section()
2041 if (strncmp (sought->section_name, section->name, len) == 0 in find_stabs_section()
2063 s.section_name = stabsect_name; in dump_stabs_section()
2344 const char *section_name; in dump_reloc_set() local
2388 section_name = (*(q->sym_ptr_ptr))->section->name; in dump_reloc_set()
2393 section_name = NULL; in dump_reloc_set()
2407 if (section_name == NULL) in dump_reloc_set()
2408 section_name = "*unknown*"; in dump_reloc_set()
2412 section_name); in dump_reloc_set()
/openbsd/src/gnu/usr.bin/perl/Porting/
Dcorelist-perldelta.pl524 my ( $section_name, $title ) = @{$_};
526 my $section = $sections{$section_name} // {
527 name => $section_name,
/openbsd/src/gnu/llvm/lldb/tools/lldb-vscode/
DJSONUtils.cpp358 llvm::StringRef section_name(section.GetName()); in GetDebugInfoSizeInSection() local
359 if (section_name.startswith(".debug") || section_name.startswith("__debug") || in GetDebugInfoSizeInSection()
360 section_name.startswith(".apple") || section_name.startswith("__apple")) in GetDebugInfoSizeInSection()
/openbsd/src/gnu/usr.bin/binutils-2.17/gas/config/
Dtc-tic4x.c1058 char *section_name; local
1067 section_name = input_line_pointer;
1070 name = xmalloc (input_line_pointer - section_name + 1);
1071 strcpy (name, section_name);
1164 char *section_name; local
1176 section_name = input_line_pointer;
1179 name = xmalloc (input_line_pointer - section_name + 1);
1180 strcpy (name, section_name);

1234