commit | 6002a31bb8dfc4aa4ca77f656af86011cd30506c | [log] [tgz] |
---|---|---|
author | Oleksiy Vyalov <ovyalov@google.com> | Fri Jun 05 01:32:45 2015 +0000 |
committer | Oleksiy Vyalov <ovyalov@google.com> | Fri Jun 05 01:32:45 2015 +0000 |
tree | 3fa19bfbb613029b86c957589cf0019404bdb717 | |
parent | d49d8eec1266740d2c902e699b5fb31d4f11cd97 [diff] [blame] |
Fix error handling in AdbClient - PushFile and PullFile. http://reviews.llvm.org/D10176 llvm-svn: 239130
diff --git a/lldb/source/Plugins/Platform/Android/AdbClient.h b/lldb/source/Plugins/Platform/Android/AdbClient.h index 82ce84c..f1c8d7d 100644 --- a/lldb/source/Plugins/Platform/Android/AdbClient.h +++ b/lldb/source/Plugins/Platform/Android/AdbClient.h
@@ -59,6 +59,9 @@ Error PushFile (const FileSpec &local_file, const FileSpec &remote_file); + Error + Stat (const FileSpec &remote_file, uint32_t &mode, uint32_t &size, uint32_t &mtime); + private: Error Connect ();