HomeSort by relevance Sort by last modified time
    Searched full:dsym (Results 26 - 50 of 132) sorted by null

12 3 4 5 6

  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 490 #define APPLE_DSYM_EXT_AND_SUBDIRECTORY ".dSYM/Contents/Resources/DWARF/"
502 /* Search for an existing dSYM file as a possible separate debug file.
512 /* Make sure the object file name itself doesn't contain ".dSYM" in it or we
513 will end up with an infinite loop where after we add a dSYM symbol file,
515 dSYM file itself. */
516 if (VG_(strcasestr) (executable_name, ".dSYM") == NULL)
518 /* Check for the existence of a .dSYM file for a given executable. */
527 /* First try for the dSYM in the same directory as the original file. */
540 prior '.' character and try appending the apple dSYM extension and
541 subdirectory and see if we find an existing dSYM file (in the abov
    [all...]
  /external/google-breakpad/src/tools/mac/dump_syms/
dump_syms_tool.mm 110 // Mach-O file, which is not copied into the dSYM. Whereas in i386, the CFI
112 // dSYM. Therefore, to get x86_64 CFI data, dump_syms needs to look at both
113 // the dSYM and the Mach-O file. If both paths are present and CFI was
115 // from the primary debug info file, the dSYM, and then dump additional CFI
186 fprintf(stderr, "Usage: %s [-a ARCHITECTURE] [-c] [-g dSYM path] "
190 fprintf(stderr, "\t-g: Debug symbol file (dSYM) to dump in addition to the "
  /external/llvm/tools/dsymutil/
dsymutil.cpp 60 desc("Produce a flat dSYM file (not a bundle)."),
117 if (llvm::sys::path::extension(BundleRoot) == ".dSYM")
131 << "\t\t<string>com.apple.xcode.dsym." << bundleIDStr << "</string>\n"
135 << "\t\t<string>dSYM</string>\n"
199 // If a flat dSYM has been requested, things are pretty simple.
209 // We need to create/update a dSYM bundle.
211 // <bundle name>.dSYM/
221 BundleDir = DwarfFile + ".dSYM";
  /external/google-breakpad/src/common/mac/
Breakpad.xcconfig 53 DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
dump_syms.h 71 // the name of a universal binary, a Mach-O file, or a dSYM bundle
163 // filename refers to a dSYM bundle, then this is the resource file
dump_syms.mm 96 // Does this filename refer to a dSYM bundle?
101 // "<basename>.dSYM"; however, if the user has specified a wrapper
103 // then the name may have the form "<basename>.<extension>.dSYM". In
  /external/libcxx/
Makefile 51 cd lib && dsymutil -o $(SYMROOT)/libc++.1.dylib.dSYM \
  /external/clang/include/clang/Driver/
Types.def 94 TYPE("dSYM", dSYM, INVALID, "dSYM", "A")
  /external/compiler-rt/test/BlocksRuntime/
makefile 12 rm -fr *.dSYM *.o *-bin testfilerunner
  /external/valgrind/docs/internals/
svn-HOWTO.txt 33 libmpiwrap-x86-darwin.so.dSYM
  /toolchain/binutils/binutils-2.25/ld/testsuite/
ChangeLog-2010 57 * ld-elfvers/vers25a.dsym: Really include _? in match.
70 * ld-elf/pr9676.rd, ld-elf/pr9679.rd, ld-elfvers/vers1.dsym,
71 ld-elfvers/vers1.sym, ld-elfvers/vers15.dsym, ld-elfvers/vers15.sym,
72 ld-elfvers/vers16.dsym, ld-elfvers/vers16a.dsym, ld-elfvers/vers17.dsym,
73 ld-elfvers/vers18.dsym, ld-elfvers/vers18.sym, ld-elfvers/vers19.dsym,
74 ld-elfvers/vers2.dsym, ld-elfvers/vers20.dsym, ld-elfvers/vers21.dsym
    [all...]
ChangeLog-9303 529 * ld-elfvers/vers27d4.dsym: New file.
547 * ld-elfvers/vers27d.dsym: New file.
575 * ld-elfvers/vers25b.dsym: Likwise.
577 * ld-elfvers/vers26b.dsym: Likwise.
579 * ld-elfvers/vers27b.dsym: Likwise.
582 * ld-elfvers/vers27c.dsym: Likwise.
592 * ld-elfvers/vers18.dsym: Updated for weak definiton change.
595 * ld-elfweak/dsowdata.dsym: Likewise.
597 * ld-elfweak/weakdata.dsym: Likewise.
613 * ld-elfvers/vers27a.dsym: Likewise
    [all...]
  /external/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp 120 // /path/to/foo.dSYM/Contents/Resources/DWARF/foo.
121 // For Path="/path/to/bar.dSYM" and Basename="foo" assume that debug info is in
122 // /path/to/bar.dSYM/Contents/Resources/DWARF/foo.
127 if (sys::path::extension(Path) != ".dSYM") {
128 ResourceName += ".dSYM";
  /external/bison/m4/
c-working.m4 56 # test.dSYM" which fails with "error: unable to open executable '-o'".
  /external/google-breakpad/src/google_breakpad/processor/
code_module.h 68 // code module itself (as is the case when .pdb or .dSYM files are used),
  /external/llvm/utils/buildit/
build_llvm 309 # Generate .dSYM files
315 # Save .dSYM files and .a archives
317 find . \( -path \*.dSYM/\* -or -name \*.a \) -print \
340 find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 85 cmd.append('--dsym-hint=%s' % hint)
360 # E.g. in Chrome several binaries may share a single .dSYM.
373 # On non-Darwin (i.e. on platforms without .dSYM debug info) always use
375 # On Darwin, if the dsym hint producer is present:
383 # .dSYM hints to it.
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
macho_combine_dwarf.go 118 // dsym is the path to the macho file containing DWARF from dsymutil.
120 func machoCombineDwarf(inexe, dsym, outexe string) error {
125 dwarff, err := os.Open(dsym)
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
macho_combine_dwarf.go 115 // dsym is the path to the macho file containing DWARF from dsymutil.
117 func machoCombineDwarf(inexe, dsym, outexe string) error {
122 dwarff, err := os.Open(dsym)
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/link/internal/ld/
macho_combine_dwarf.go 118 // dsym is the path to the macho file containing DWARF from dsymutil.
120 func machoCombineDwarf(inexe, dsym, outexe string) error {
125 dwarff, err := os.Open(dsym)
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
macho_combine_dwarf.go 115 // dsym is the path to the macho file containing DWARF from dsymutil.
117 func machoCombineDwarf(inexe, dsym, outexe string) error {
122 dwarff, err := os.Open(dsym)
  /external/compiler-rt/
CMakeLists.txt 193 "Generate dSYM files and strip executables and libraries (Darwin Only)" OFF)
  /external/google-breakpad/src/processor/proto/
process_state.proto 195 // code module itself (as is the case when .pdb or .dSYM files are used),
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLIb.xcodeproj/
project.pbxproj 256 DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  /external/clang/test/Driver/
darwin-ld.c 8 // RUN: grep '".*dsymutil" "-o" "BAR.dSYM" "BAR"' %t.log
10 // RUN: grep '".*dsymutil" "-o" "BAR.dSYM" "BAR"' %t.log

Completed in 1877 milliseconds

12 3 4 5 6