HomeSort by relevance Sort by last modified time
    Searched defs:gdb (Results 1 - 3 of 3) sorted by null

  /art/test/testrunner/
testrunner.py 127 gdb = False variable
339 if gdb:
340 options_all += ' --gdb'
342 options_all += ' --gdb-arg ' + gdb_arg
509 if gdb:
860 global gdb
888 parser.add_argument('--gdb', action='store_true', dest='gdb')
889 parser.add_argument('--gdb-arg', dest='gdb_arg')
    [all...]
  /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

Completed in 305 milliseconds