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

  /sdk/chimpchat/src/com/android/chimpchat/adb/
AdbBackend.java 44 String adbLocation = findAdb();
49 adbLocation, true /* forceNewBridge */);
  /sdk/screenshot/src/com/android/screenshot/
Screenshot.java 104 String adbLocation = System.getProperty("com.android.screenshot.bindir"); //$NON-NLS-1$
105 if (adbLocation != null && adbLocation.length() != 0) {
106 adbLocation += File.separator + "adb"; //$NON-NLS-1$
108 adbLocation = "adb"; //$NON-NLS-1$
115 adbLocation, true /* forceNewBridge */);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
DeviceBridge.java 45 String adbLocation = System.getProperty("hierarchyviewer.adb");
46 if (adbLocation != null && adbLocation.length() != 0) {
47 adbLocation += File.separator + "adb";
49 adbLocation = "adb";
52 bridge = AndroidDebugBridge.createBridge(adbLocation, true);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
DdmsPlugin.java 272 String adbLocation = locator.getAdbLocation();
275 if (adbLocation != null && traceviewLocation != null &&
278 if (setToolsLocation(adbLocation, hprofConvLocation,
467 private static boolean setToolsLocation(String adbLocation, String hprofConvLocation,
470 File adb = new File(adbLocation);
493 sAdbLocation = adbLocation;
505 public static void setToolsLocation(String adbLocation, boolean startAdb,
508 if (setToolsLocation(adbLocation, hprofConvLocation, traceViewLocation)) {
  /sdk/ddms/app/src/com/android/ddms/
UIThread.java 485 String adbLocation;
491 adbLocation = platformTools.getAbsolutePath() + File.separator + "adb"; //$NON-NLS-1$
493 adbLocation = ddmsParentLocation + File.separator + "adb"; //$NON-NLS-1$
496 adbLocation = "adb"; //$NON-NLS-1$
500 AndroidDebugBridge.createBridge(adbLocation, true /* forceNewBridge */);
    [all...]

Completed in 438 milliseconds