OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Adb
(Results
1 - 2
of
2
) 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
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
...]
Completed in 199 milliseconds