OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
115
String
adbLocation
= System.getProperty("com.android.screenshot.bindir"); //$NON-NLS-1$
116
if (
adbLocation
!= null &&
adbLocation
.length() != 0) {
117
adbLocation
+= File.separator + "adb"; //$NON-NLS-1$
119
adbLocation
= "adb"; //$NON-NLS-1$
126
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
304
String
adbLocation
= locator.getAdbLocation();
307
if (
adbLocation
!= null && traceviewLocation != null &&
310
if (setToolsLocation(
adbLocation
, hprofConvLocation,
477
private static boolean setToolsLocation(String
adbLocation
, String hprofConvLocation,
480
File adb = new File(
adbLocation
);
503
sAdbLocation =
adbLocation
;
515
public static void setToolsLocation(String
adbLocation
, boolean startAdb,
518
if (setToolsLocation(
adbLocation
, hprofConvLocation, traceViewLocation)) {
/sdk/ddms/app/src/com/android/ddms/
UIThread.java
503
String
adbLocation
;
509
adbLocation
= platformTools.getAbsolutePath() + File.separator + "adb"; //$NON-NLS-1$
511
adbLocation
= ddmsParentLocation + File.separator + "adb"; //$NON-NLS-1$
514
adbLocation
= "adb"; //$NON-NLS-1$
518
AndroidDebugBridge.createBridge(
adbLocation
, true /* forceNewBridge */);
[
all
...]
Completed in 604 milliseconds