/external/google-breakpad/src/common/ |
stabs_reader_unittest.cc | 70 // as input to the STABS parser. 126 // test input for the STABS parser. 203 // The strings for our STABS entries. 206 // The size of the 'value' field of stabs entries in this section. 231 StabsFixture() : stabs(&strings), unitized(true) { } 233 // Create a StabsReader to parse the mock stabs data in stabs and 235 // endianness and value size of stabs to parse the data. If all goes 240 if (!stabs.GetContents(&stabs_contents) || 250 stabs.endianness() == kBigEndian, stabs.value_size(), unitized 256 StabsAssembler stabs; member in struct:__anon19388::StabsFixture [all...] |
/toolchain/binutils/binutils-2.25/binutils/ |
rddbg.c | 73 /* Try reading the COFF symbols if we didn't find any stabs in COFF 95 /* Read stabs in sections debugging information from a BFD. */ 109 { "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr" }, 127 bfd_byte *stabs, *strings; local 132 stabs = (bfd_byte *) xmalloc (stabsize); 133 if (! bfd_get_section_contents (abfd, sec, stabs, 0, stabsize)) 164 for (stab = stabs; stab <= (stabs + stabsize) - 12; stab += 12) 182 /* Special type 0 stabs indicate the offset to the 196 (long) (stab - stabs) / 12, strx, type) [all...] |
objdump.c | 99 static int dump_stab_section_info; /* --stabs */ 179 static bfd_byte *stabs; variable 215 -G, --stabs Display (in raw form) any STABS info in the file\n\ 338 {"stabs", no_argument, NULL, 'G'}, [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
syms.c | 848 /* Look through stabs debugging information in .stab and .stabstr 862 stabs section we should look to find line number information for a 900 bfd_byte *stabs; member in struct:stab_find_info 904 /* A table that indexes stabs by memory address. */ 947 /* Stabs entries use a 12 byte format: 955 The stabs symbols are divided into compilation units. For the 958 number of stabs symbols for this unit. */ 972 /* No stabs debugging information. */ 1010 /* No stabs debugging information. Set *pinfo so that we 1025 info->stabs = (bfd_byte *) bfd_alloc (abfd, stabsize) [all...] |
ecofflink.c | 270 strings when combining stabs debugging information. */ 875 numbers. Frankly, forget it. Anybody using stabs debugging 877 stabs are adjusted correctly. */ 1733 bfd_boolean stabs; local 1870 bfd_boolean stabs; local [all...] |
/external/google-breakpad/src/common/linux/ |
dump_symbols.cc | 182 // A callback object to handle data from the STABS reader. 184 // Find the addresses of the STABS data, and create a STABS reader object. 185 // On Linux, STABS entries always have 32-bit values, regardless of the 188 const uint8_t* stabs = local 192 google_breakpad::StabsReader reader(stabs, stab_section->sh_size, 195 // Read the STABS data, and do post-processing. 616 // Look for STABS debugging information, and load it if present. 630 " STABS debugging information\n", obj_file.c_str()); [all...] |