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

  /development/ide/emacs/
android-host.el 27 ;; (global-set-key [f8] 'android-adb-sync)
30 ;; M-x android-adb-sync
33 ;; C-x a a android-adb-root
34 ;; C-x a r android-adb-remount
35 ;; C-x a s android-adb-sync
36 ;; C-x a b android-adb-shell-reboot-bootloader
56 (define-key map (kbd "a") 'android-adb-root)
57 (define-key map (kbd "r") 'android-adb-remount)
58 (define-key map (kbd "s") 'android-adb-sync)
59 (define-key map (kbd "b") 'android-adb-shell-reboot-bootloader
    [all...]
android-common.el 148 (defun android-adb ()
149 "Return the path to the adb executable.
151 (android-find-host-bin "adb"))
157 ; its directory like adb requests sometimes.
160 (defun android-adb-command (command &optional product)
161 "Execute 'adb COMMAND'.
163 when adb is invoked."
168 (shell-command (concat (android-adb) " -p " (android-product-path)
171 (shell-command (concat (android-adb) " " command)
174 (defun android-adb-shell-command (command
    [all...]
  /system/core/libacc/tests/
accarm 29 def adb(args): function
30 return runCmd(["adb"] + args)
34 adb(["remount"])
35 adb(["shell", "rm", "/system/bin/acc"])
36 adb(["shell", "mkdir", "/system/bin/accdata"])
37 adb(["shell", "mkdir", "/system/bin/accdata/data"])
40 adb(["push", file, remoteFileName])
43 adb(["sync"])
57 remoteCmdLine = ["adb", "shell", "/system/bin/acc"] + remoteArgs
test.py 70 def adb(args): function
71 return runCmd(["adb"] + args)
78 adb(["remount"])
79 adb(["shell", "rm", "/system/bin/acc"])
80 adb(["shell", "mkdir", "/system/bin/accdata"])
81 adb(["shell", "mkdir", "/system/bin/accdata/data"])
83 adb(["shell", "rm", "/system/bin/accdata/data/*"])
87 adb(["shell", "mkdir", os.path.join(root, d)])
89 adb(["push", os.path.join(root, f), os.path.join("/system/bin/accdata", root, f)])
91 adb(["sync"]
    [all...]
  /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;
  /external/webkit/WebKit/android/wds/client/
AdbConnection.cpp 46 // Default adb port
56 log_errno("Failed to create socket for connecting to adb");
61 sockaddr_in adb; local
62 createTcpSocket(adb, ADB_PORT);
64 // Connect to adb
65 if (::connect(m_fd, (sockaddr*) &adb, sizeof(adb)) < 0) {
66 log_errno("Failed to connect to adb");
74 // Adb protocol stuff
110 // Check for the OKAY from adb
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
UpdaterData.java 487 // Update the USB vendor ids for adb
490 monitor.setResult("Updated ADB to support the USB devices declared in the SDK add-ons.");
492 mSdkLog.error(e, "Update ADB failed");
493 monitor.setResult("failed to update adb to support the USB devices declared in the SDK add-ons.");
498 // We need to restart ADB. Actually since we don't know if it's even
500 // Note: it turns out even under Windows we don't need to kill adb
501 // before updating the tools folder, as adb.exe is (surprisingly) not
526 * Attempts to restart ADB.
529 * now is a good time to restart ADB.
543 "ADB Restart",
552 AdbWrapper adb = new AdbWrapper(getOsSdkRoot(), monitor); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
DdmsPlugin.java 64 private static final String ADB_LOCATION = PLUGIN_ID + ".adb"; // $NON-NLS-1$
69 /** Location of the adb command line executable */
221 // read the adb location from the prefs to attempt to start it properly without
287 * Stores the adb location. This returns true if the location is an existing file.
290 File adb = new File(adbLocation); local
291 if (adb.isFile()) {
294 File toolsFolder = adb.getParentFile();
310 * Set the location of the adb executable and optionally starts adb
311 * @param adb location of ad
    [all...]

Completed in 343 milliseconds