diff options
| author | Oleksiy Vyalov <ovyalov@google.com> | 2015-05-28 17:42:48 +0000 |
|---|---|---|
| committer | Oleksiy Vyalov <ovyalov@google.com> | 2015-05-28 17:42:48 +0000 |
| commit | 0b5ebef7cdf5b4812a3ceb09a8e4a59359019d3d (patch) | |
| tree | 47d32bf3bbc44d41fa0c2a68ba7134e42ac3fd22 /lldb/source/Plugins/Platform/Android/PlatformAndroid.h | |
| parent | 5f5b1e99aa09b020ff3929207ba3c88aed2d755a (diff) | |
| download | bcm5719-llvm-0b5ebef7cdf5b4812a3ceb09a8e4a59359019d3d.tar.gz bcm5719-llvm-0b5ebef7cdf5b4812a3ceb09a8e4a59359019d3d.zip | |
Refactor AdbClient and make PlatformAndroid::GetFile to use "adb pull".
http://reviews.llvm.org/D10082
llvm-svn: 238442
Diffstat (limited to 'lldb/source/Plugins/Platform/Android/PlatformAndroid.h')
| -rw-r--r-- | lldb/source/Plugins/Platform/Android/PlatformAndroid.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Platform/Android/PlatformAndroid.h b/lldb/source/Plugins/Platform/Android/PlatformAndroid.h index f1d34e64eb0..b02a1b5b5f7 100644 --- a/lldb/source/Plugins/Platform/Android/PlatformAndroid.h +++ b/lldb/source/Plugins/Platform/Android/PlatformAndroid.h @@ -64,9 +64,13 @@ namespace platform_android { Error ConnectRemote (Args& args) override; - lldb_private::Error - PutFile (const lldb_private::FileSpec& source, - const lldb_private::FileSpec& destination, + Error + GetFile (const FileSpec& source, + const FileSpec& destination) override; + + Error + PutFile (const FileSpec& source, + const FileSpec& destination, uint32_t uid = UINT32_MAX, uint32_t gid = UINT32_MAX) override; |

