/system/core/adb/ |
adb.c | 31 #include "adb.h" 99 { "adb", TRACE_ADB }, 149 * Implements ADB tracing inside the emulator. 169 /* A handle to adb-debug qemud service in the emulator. */ 172 /* Initializes connection with the adb-debug qemud service in the emulator. */ 181 /* adb debugging QEMUD service connection request. */ 182 snprintf(con_name, sizeof(con_name), "qemud:adb-debug"); 215 D("adb: online\n"); 221 D("adb: offline\n"); 724 // It's non-sensical to support the "reserved" space on the adb host sid [all...] |
/sdk/files/ant/ |
uibuild.xml | 33 <!-- Tells adb which device to target. You can change this from the command line 36 <property name="adb.device.arg" value="" /> 96 <property name="adb" location="${android.platform.tools.dir}/adb${exe}" /> 119 <exec executable="${adb}" failonerror="true"> 120 <arg line="${adb.device.arg}" /> 220 <exec executable="${adb}" failonerror="true"> 221 <arg line="${adb.device.arg}" /> 232 <exec executable="${adb}" failonerror="true"> 233 <arg line="${adb.device.arg}" / [all...] |
/frameworks/base/docs/html/guide/faq/ |
troubleshooting.jd | 11 <li><a href="#nodevice">ADB reports "no device" when an emulator is running</a></li> 68 <a name="nodevice"></a><h2>ADB reports "no device" when an emulator is running</h2> 69 <p>Try restarting adb by stopping it (<code>adb 70 kill-server</code>) then any other adb command to restart it.</p> 86 <li>Did you send your .apk file to the device (<a href="{@docRoot}guide/developing/tools/adb.html#move">adb install</a>)?</li> 87 <li>Run logcat on your device (<code>adb logcat</code>) 103 <p>Did you remember to send your .apk file to the device (<a href="{@docRoot}guide/developing/tools/adb.html#move">adb [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
android_unittest.py | 52 # Any "adb" commands will be interpret by this class instead of executing actual 72 if args[0] == 'adb': 117 android.AndroidCommands._adb_command_path_options = ['adb'] 126 # The "adb" binary with the latest version should be used. 133 # The used adb command should include the device's serial number, and get_serial() should reflect this. 136 self.assertEquals(['adb', '-s', '123456789ABCDEF0'], android_commands.adb_command()) 139 # Running an adb command should return the command's output. 144 self.assertEquals('adb -s 123456789ABCDEF0 command', self._mock_executive.last_command()) 152 self.assertEquals('adb -s 123456789ABCDEF0 shell ls -d /some_directory', self._mock_executive.last_command()) 155 self.assertEquals('adb -s 123456789ABCDEF0 push foo bar', self._mock_executive.last_command() [all...] |
/external/oprofile/ |
oprofile_android | 77 # ADB wrapper 78 class Adb: 80 self._base_args = ['adb'] 180 self.adb = Adb(serial_number) 250 rc, output = self.adb.shell(['cat', '/proc/kallsyms'], echo=False) 259 rc, output = self.adb.shell(['/system/xbin/opcontrol'] + self._opcontrol_verbose_arg() + [ 274 rc, output = self.adb.shell(['/system/xbin/opcontrol'] + self._opcontrol_verbose_arg() + [ 286 rc, output = self.adb.shell(['/system/xbin/opcontrol'] + self._opcontrol_verbose_arg() + [ 298 rc, output = self.adb.shell(['/system/xbin/opcontrol'] + self._opcontrol_verbose_arg() + [all...] |
/external/chromium_org/tools/gn/secondary/chrome/ |
BUILD.gn | 101 "browser/devtools/adb/android_rsa.cc", 102 "browser/devtools/adb/android_rsa.h", 103 "browser/devtools/adb/android_usb_device.cc", 104 "browser/devtools/adb/android_usb_device.h", 105 "browser/devtools/adb/android_usb_socket.cc", 106 "browser/devtools/adb/android_usb_socket.h", 149 "browser/devtools/adb/android_rsa.cc",
|
/ndk/ |
ndk-gdb | 69 # If ADB_CMD is not defined, try to find a program named 'adb' 71 ADB_CMD=${ADB_CMD:-$(find_program adb)} 230 --adb=*) # specify ADB command 307 echo " --adb=<file> Use specific adb command [$ADB_CMD]" 329 # Check ADB tool version 332 log "Using specific adb command: $ADB_CMD" 335 echo "ERROR: The 'adb' tool is not in your path." 337 echo " --adb=<executable> to point to a valid one. [all...] |
/external/chromium_org/build/android/ |
adb_profile_chrome.py | 98 def __init__(self, adb, package_info, categories, ring_buffer): 99 self._adb = adb 163 def __init__(self, adb, categories, ring_buffer): 164 self._adb = adb 175 def GetCategories(adb): 176 return adb.RunShellCommand('atrace --list_categories') 195 # We use a separate interface to adb because the one from AndroidCommands 198 cmd = ['adb'] + device + ['shell', 'atrace', '--%s' % command] + \ 224 # Collapse CRLFs that are added by adb shell. 408 adb = android_commands.AndroidCommands( [all...] |
/build/ |
envsetup.sh | 808 adb shell ps \ 825 local PID=`adb shell ps \ 862 if adb shell ls -l /proc/$PID/exe | grep -q /system/bin/app_process ; then 869 adb shell mv $TRACES $ORIG 872 adb shell touch $TRACES 873 adb shell chmod 666 $TRACES 876 adb shell kill -3 $PID 877 adb shell notify $TRACES >/dev/null 880 adb shell mv $TRACES $TMP 881 adb shell mv $ORIG $TRACE [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
tasn_utl.c | 223 const ASN1_ADB *adb; local 232 adb = ASN1_ADB_ptr(tt->item); 235 sfld = offset2ptr(*pval, adb->offset); 240 if (!adb->null_tt) 242 return adb->null_tt; 262 for (atbl = adb->tbl, i = 0; i < adb->tblcount; i++, atbl++) 269 if (!adb->default_tt) 271 return adb->default_tt;
|
/external/openssl/crypto/asn1/ |
tasn_utl.c | 223 const ASN1_ADB *adb; local 232 adb = ASN1_ADB_ptr(tt->item); 235 sfld = offset2ptr(*pval, adb->offset); 240 if (!adb->null_tt) 242 return adb->null_tt; 262 for (atbl = adb->tbl, i = 0; i < adb->tblcount; i++, atbl++) 269 if (!adb->default_tt) 271 return adb->default_tt;
|
/art/build/ |
Android.gtest.mk | 156 adb shell touch $(ART_TEST_DIR)/$$@ 157 adb shell rm $(ART_TEST_DIR)/$$@ 158 adb shell chmod 755 $(ART_NATIVETEST_DIR)/$$(notdir $$<) 159 adb shell sh -c "$(ART_NATIVETEST_DIR)/$$(notdir $$<) && touch $(ART_TEST_DIR)/$$@" 160 $(hide) (adb pull $(ART_TEST_DIR)/$$@ /tmp/ && echo $$@ PASSED) || (echo $$@ FAILED && exit 1)
|
/development/testrunner/test_defs/ |
native_test.py | 34 def Run(self, options, adb): 50 adb: adb interface 88 output = adb.SendShellCommand("'%s 2>&1;echo -n exit code:$?'" % 100 adb.SendShellCommand("rm %s" % full_path)
|
/development/testrunner/ |
test_defs.xsd | 75 adb shell am instrument -w <package>/<runner> 77 adb shell am instrument -w -e class <class> <package>/<runner> 108 adb sync 110 adb shell "/system/bin/${test_prog} >/dev/null 2>&1;echo \$?" 111 adb shell "rm /system/bin/${test_prog}"
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/ |
messages.properties | 20 DeviceView_ADB_Error=Adb Error 21 DeviceView_ADB_Failed_Restart=Adb failed to restart\!\n\nMake sure the plugin is properly configured. 36 DeviceView_Reset_ADB=Reset adb 37 DeviceView_Reset_ADB_Host_Deamon=Reset the adb host daemon 89 PreferencePage_ADB_Connection_Time_Out=ADB connection time out (ms):
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/ |
DeviceBridge.java | 45 String adbLocation = System.getProperty("hierarchyviewer.adb"); 47 adbLocation += File.separator + "adb"; 49 adbLocation = "adb"; 153 "Adb rejected forward command for device %1$s: %2$s", 175 "Adb rejected remove-forward command for device %1$s: %2$s",
|
/bootable/recovery/ |
adb_install.cpp | 34 #include "minadbd/adb.h" 80 "to the device with \"adb sideload <filename>\"...\n"); 90 // you just have to 'adb sideload' a file that's not a valid
|
/cts/apps/CtsVerifier/ |
Android.mk | 43 cts-verifier: CtsVerifier adb 44 adb install -r $(PRODUCT_OUT)/data/app/CtsVerifier.apk \ 45 && adb shell "am start -n com.android.cts.verifier/.CtsVerifierActivity"
|
/cts/tools/tradefed-host/ |
README | 21 1. Ensure 'adb' is in your current PATH. adb can be found in the 33 4. Ensure device is visible via 'adb devices'
|
/development/build/ |
sdk-windows-x86.atree | 33 rm platform-tools/adb 35 bin/adb.exe strip platform-tools/adb.exe
|
/docs/source.android.com/src/devices/tech/test_infra/tradefed/fundamentals/ |
devices.jd | 38 adb's TCP feature. The <a href="/reference/com/android/tradefed/device/TestDevice.html" 39 >TestDevice</a> class sits atop the ddmlib library, which is a Java interface to adb. So any 40 physical device listed in <code>adb devices</code> can be instantiated and used as a
|
/docs/source.android.com/src/source/ |
building-dream.jd | 43 <p>Run <code>make adb</code> if you don't already have adb in your path.</p> 46 <p>run <code>adb root</code>.</p>
|
/frameworks/base/docs/html/tools/debugging/ |
debugging-projects-cmdline.jd | 25 <li><a href="{@docRoot}tools/help/adb.html">ADB</a></li> 46 <li>Start DDMS from the sdk <code>/tools</code> directory. This also starts ADB if it is
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
MediaFrameworkUnitTestRunner.java | 29 * AndroidManifest.xml file, and then "make -j4 mediaframeworktest; adb sync" 33 * adb shell am instrument -e class \ 38 * adb shell am instrument \
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/ |
testit_android | 118 - The 'adb' tool in your path. 119 - An Android device connected to ADB. 223 if [ -z "$ADB" ] 225 ADB=adb 229 # Statically link to ensure the executable can be run easily through ADB 232 run2 $ADB push $LIBCXX_LIBS/libc++_shared.so /data/local/tmp 2>/dev/null 257 # Run a shell command through ADB, return its status. 265 echo "COMMAND: $ADB shell $@" 267 $ADB shell "$@ ; echo \$?" | sed -e 's![[:cntrl:]]!!g' > $CMD_OUT 2>& [all...] |