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

  /external/chromium_org/chrome/test/chromedriver/chrome/
adb.h 13 class Adb {
15 virtual ~Adb() {}
  /cts/suite/audio_quality/lib/src/
Adb.h 22 /** ADB interface to set port forwarding and launch client app */
23 class Adb {
25 /// device: device number typically passed in adb's -s argument.
26 /// if device string is empty, adb command will be called without -s option.
27 Adb(const android::String8& device);
28 ~Adb();
Adb.cpp 19 #include "Adb.h"
21 Adb::Adb(const android::String8& device)
27 Adb::~Adb()
32 bool Adb::setPortForwarding(int hostPort, int devicePort)
44 bool Adb::launchClient(const android::String8& clientBinary, const android::String8& component)
63 /** @param command ADB command except adb -s XYZW */
64 int Adb::executeCommand(const android::String8& command
    [all...]
  /external/chromium_org/tools/cr/cr/actions/
adb.py 5 """A module to hold adb specific action implementations."""
12 class Adb(object):
13 """Exposes the functionality of the adb tool to the rest of cr.
16 adb command line, and expose it in neutral form to the rest of the code.
96 '--adb={CR_ADB}',
113 Adb.Kill(target, arguments)
116 Adb.Run(target, arguments)
137 Adb.Uninstall(target, arguments)
141 Adb.Install(target, arguments)
145 Adb.Reinstall(target, arguments
    [all...]
  /external/chromium_org/build/android/pylib/
android_commands.py 5 """Provides an interface to communicate with the device via the adb command.
7 Assumes adb binary is currently on system path.
49 # Set the adb shell prompt to be a unique marker that will [hopefully] not
204 Python's os.walk isn't used because it doesn't work over adb shell.
270 """Returns whether adb push has succeeded from the provided output."""
294 """Helper class for communicating with Android device via adb."""
300 device: If given, adb commands are only send to the device of this ID.
305 # Required by third_party/android_testrunner to call directly 'adb'.
320 self._system_properties = system_properties.SystemProperties(self.Adb())
335 """Logs the adb shell command.""
    [all...]

Completed in 1473 milliseconds