HomeSort by relevance Sort by last modified time
    Searched refs:gdb (Results 226 - 250 of 284) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/gdbserver_tests/
mchelp.stdoutB.exp 10 v.set gdb_output : set valgrind output to gdb
12 v.set mixed_output : set valgrind output to log, interactive output to gdb
55 v.set gdb_output : set valgrind output to gdb
57 v.set mixed_output : set valgrind output to log, interactive output to gdb
69 v.set hostvisibility [yes*|no] : (en/dis)ables access by gdb/gdbserver to
mcvabits.stderrB.exp 1 relaying data between gdb and process ....
mcblocklistsearch.stderrB.exp 1 relaying data between gdb and process ....
mcleak.stderrB.exp 1 relaying data between gdb and process ....
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gdb.py 1 # Verify that gdb can pretty-print the various PyObject* types
3 # The code for testing gdb was adapted from similar work in Unladen Swallow's
16 gdb_version, _ = subprocess.Popen(["gdb", "--version"],
19 # This is what "no gdb" looks like. There may, however, be other
21 raise unittest.SkipTest("Couldn't find gdb on the path")
22 gdb_version_number = re.search("^GNU gdb [^\d]*(\d+)\.(\d)", gdb_version)
26 raise unittest.SkipTest("gdb versions before 7.0 didn't support python embedding"
31 'python-gdb.py')
34 """Runs gdb in --batch mode with the additional arguments given by *args.
43 base_cmd = ('gdb', '--batch'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gdb.py 1 # Verify that gdb can pretty-print the various PyObject* types
3 # The code for testing gdb was adapted from similar work in Unladen Swallow's
16 gdb_version, _ = subprocess.Popen(["gdb", "--version"],
19 # This is what "no gdb" looks like. There may, however, be other
21 raise unittest.SkipTest("Couldn't find gdb on the path")
22 gdb_version_number = re.search("^GNU gdb [^\d]*(\d+)\.(\d)", gdb_version)
26 raise unittest.SkipTest("gdb versions before 7.0 didn't support python embedding"
31 'python-gdb.py')
34 """Runs gdb in --batch mode with the additional arguments given by *args.
43 base_cmd = ('gdb', '--batch'
    [all...]
  /ndk/
ndk-gdb 23 # See docs/NDK-GDB.TXT for usage description. Essentially, you just
24 # need to launch ndk-gdb from your application project directory
166 # ./ndk-gdb --project=/path/to/project
292 echo "Setup a gdb debugging session for your Android NDK application."
293 echo "Read $$NDK/docs/NDK-GDB.TXT for complete usage instructions."
309 echo " --exec=<file> Execute gdb initialization commands in <file> after connection"
387 CMD_OUT=`mktemp /tmp/ndk-gdb-cmdout-XXXXXX`
528 echo "ndk-gdb will only work if your device is running Android 2.2 or higher."
533 echo "ERROR: ndk-gdb requires a target device running Android 2.2 (API level 8) or higher."
575 log "Using gdb setup init: $GDBSETUP_INIT
    [all...]
ndk-gdb.py 25 See docs/NDK-GDB.TXT for usage description. Essentially, you just
26 need to launch ndk-gdb-py from your application project directory
145 Setup a gdb debugging session for your Android NDK application.
146 Read ''' + NDK + '''/docs/NDK-GDB.html for complete usage instructions.''',
183 help='Execute gdb initialization commands in <EXEC_FILE> after connection',
329 # Silent if gdb is running in tui mode to keep things tidy.
599 ndk-gdb will only work if your device is running Android 2.2 or higher.''')
603 error('''ndk-gdb requires a target device running Android 2.2 (API level 8) or higher.
621 log('Using gdb setup init: %s' % (GDBSETUP_INIT))
793 # Now launch the appropriate gdb client with the right init command
    [all...]
  /ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/test/
Makefile 2 GDB=gdb
86 $(GDB) -batch -x script ./$$TARGET; \
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/test/
Makefile 2 GDB=gdb
86 $(GDB) -batch -x script ./$$TARGET; \
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/test/
Makefile 2 GDB=gdb
86 $(GDB) -batch -x script ./$$TARGET; \
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkDebuggerTab.java 22 import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
89 lblNewLabel.setText("GDB Command File:");
222 // check gdb path
223 String gdb = mGdbPathText.getText().trim(); local
224 if (!gdb.equals(NdkLaunchConstants.DEFAULT_GDB)) {
225 File f = new File(gdb);
227 setErrorMessage("Invalid gdb location.");
232 // check gdb init path
NdkGdbLaunchDelegate.java 52 import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
53 import org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate;
183 // ndk-gdb requires device > Froyo
348 // launch gdb
383 String gdb = toolchainPrefix + "gdb"; //$NON-NLS-1$ local
387 NdkVariables.NDK_GDB, true, gdb);
396 // fix path to gdb
NdkGdbLaunchShortcut.java 27 import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
94 // Set the ndk gdb specific launch attributes in the config (if necessary)
  /ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/stlport/
printers.py 0 # GDB pretty printers for STLport.
23 import gdb namespace
45 return gdb.lookup_type (namespace + typename)
56 return gdb.lookup_type (namespace + typename)
127 if words.type.code == gdb.TYPE_CODE_ARRAY:
185 blocksize = 32 * gdb.lookup_type ("void").pointer().sizeof
473 = val.type.template_argument (0).code == gdb.TYPE_CODE_BOOL
515 self.visualizer = gdb.default_visualizer (val['c'])
671 if type.code == gdb.TYPE_CODE_REF:
689 obj = gdb
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/stlport/
printers.py 0 # GDB pretty printers for STLport.
23 import gdb namespace
45 return gdb.lookup_type (namespace + typename)
55 return gdb.lookup_type (namespace + typename)
126 if words.type.code == gdb.TYPE_CODE_ARRAY:
184 blocksize = 32 * gdb.lookup_type ("void").pointer().sizeof
472 = val.type.template_argument (0).code == gdb.TYPE_CODE_BOOL
514 self.visualizer = gdb.default_visualizer (val['c'])
670 if type.code == gdb.TYPE_CODE_REF:
688 obj = gdb
    [all...]
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/stlport/
printers.py 0 # GDB pretty printers for STLport.
23 import gdb namespace
45 return gdb.lookup_type (namespace + typename)
56 return gdb.lookup_type (namespace + typename)
127 if words.type.code == gdb.TYPE_CODE_ARRAY:
185 blocksize = 32 * gdb.lookup_type ("void").pointer().sizeof
473 = val.type.template_argument (0).code == gdb.TYPE_CODE_BOOL
515 self.visualizer = gdb.default_visualizer (val['c'])
671 if type.code == gdb.TYPE_CODE_REF:
689 obj = gdb
    [all...]
  /ndk/build/tools/
build-gdbserver.sh 55 register_var_option "--gdb-version=<name>" GDB_VERSION "Use specific gdb version."
86 SRC_DIR2="$SRC_DIR/gdb/gdb-$GDBVER/gdb/gdbserver"
164 LIBTHREAD_DB_DIR=$ANDROID_NDK_ROOT/sources/android/libthread_db/gdb-$GDBVER
build-host-python.sh 22 # found in sources/host-tools/gdb-pretty-printers/stlport
386 run2 cp -rf $NDK_DIR/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2 $PYPPDIR/stlport
  /ndk/build/core/
setup-abi.mk 67 TARGET_GDB_SETUP := $(TARGET_OUT)/setup.gdb
setup-toolchain.mk 170 NDK_APP_GDBSETUP := $(NDK_APP_DST_DIR)/gdb.setup
189 # Install gdb.setup for both .so and .bc projects
205 # This prevents parallel execution to clear gdb.setup after it has been written to
setup-app.mk 113 $(hide) $(call host-rm,$(NDK_ALL_ABIS:%=$(NDK_APP_LIBS_OUT)/%/gdb.setup))
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/
NdkHelper.java 25 import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants;
  /external/valgrind/main/none/tests/
cmdline2.stdout.exp 83 --vgdb-shadow-registers=no|yes let gdb see the shadow registers [no]
138 --wait-for-gdb=yes|no pause on startup to wait for gdb attach
  /external/chromium_org/build/
install-chroot.sh 641 autoconf automake1.9 dpkg-dev g++-multilib gcc-multilib gdb less libtool \
658 for i in binutils gdb; do
664 lib="$({ ldd /usr/bin/ld; ldd /usr/bin/gdb; } |
676 for i in gdb ld; do

Completed in 480 milliseconds

1 2 3 4 5 6 7 8 91011>>