diff options
| author | Chaoren Lin <chaorenl@google.com> | 2015-05-01 16:49:28 +0000 |
|---|---|---|
| committer | Chaoren Lin <chaorenl@google.com> | 2015-05-01 16:49:28 +0000 |
| commit | 3ea689b313d43355faa0e5ab68b26367ee30de83 (patch) | |
| tree | 66b135a8d1e48bd7155a47c2f725ead721816df9 /lldb/source/Plugins/Platform/Android/AdbClient.h | |
| parent | ec53482aeff13b47672f2a19e499e43daf272f77 (diff) | |
| download | bcm5719-llvm-3ea689b313d43355faa0e5ab68b26367ee30de83.tar.gz bcm5719-llvm-3ea689b313d43355faa0e5ab68b26367ee30de83.zip | |
Support remote-android with multiple connected devices.
Summary:
This change introduces a new URL scheme for `platform connect`:
```
adb://device-id:port
```
Reviewers: vharron, tberghammer, clayborg, ovyalov
Reviewed By: ovyalov
Subscribers: tberghammer, lldb-commits
Differential Revision: http://reviews.llvm.org/D9358
llvm-svn: 236321
Diffstat (limited to 'lldb/source/Plugins/Platform/Android/AdbClient.h')
| -rw-r--r-- | lldb/source/Plugins/Platform/Android/AdbClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Platform/Android/AdbClient.h b/lldb/source/Plugins/Platform/Android/AdbClient.h index 3dcc0068596..235fc56e95e 100644 --- a/lldb/source/Plugins/Platform/Android/AdbClient.h +++ b/lldb/source/Plugins/Platform/Android/AdbClient.h @@ -32,7 +32,7 @@ public: using DeviceIDList = std::list<std::string>; static Error - CreateByDeviceID (const char* device_id, AdbClient &adb); + CreateByDeviceID(const std::string &device_id, AdbClient &adb); AdbClient () = default; explicit AdbClient (const std::string &device_id); |

