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

  /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 explicit 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/skia/tools/skpbench/
_adb.py 11 class Adb:
13 self.__invocation = ['adb']
  /system/extras/simpleperf/inferno/
adb.py 16 class Adb:
23 err = subprocess.call(["adb", "shell", "rm", "-f", "/data/local/tmp/perf.data"])
27 piof_output = subprocess.check_output(["adb", "shell", "pidof", process_name])
36 err = subprocess.call(["adb", "pull", "/data/local/tmp/perf.data", "."])
47 output = subprocess.check_output(["adb", "shell", "getprop"])
88 subprocess.call(["adb", "push", exec_path, "/data/local/tmp/simpleperf"])

Completed in 2931 milliseconds