[Lldb-commits] [lldb] [lldb] refactor PlatformAndroid (PR #145382)
Su Shi via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 22 23:48:47 PDT 2025
================
@@ -0,0 +1,162 @@
+//===-- AdbClientUtils.cpp ------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+#include "lldb/Utility/Connection.h"
+#include "AdbClientUtils.h"
+#include "lldb/Utility/LLDBLog.h"
+#include "lldb/Utility/Log.h"
+#include "lldb/Utility/Status.h"
+#include "lldb/Utility/Timeout.h"
+#include <chrono>
+#include <cstdlib>
+#include <sstream>
+
+using namespace lldb;
+using namespace lldb_private;
+using namespace lldb_private::platform_android;
+using namespace std::chrono;
+
+namespace lldb_private {
+namespace platform_android {
+namespace adb_client_utils {
+
----------------
metacpp wrote:
```suggestion
using namespace lldb;
using namespace lldb_private;
using namespace lldb_private::platform_android;
using namespace std::chrono;
```
https://github.com/llvm/llvm-project/pull/145382
More information about the lldb-commits
mailing list