Convert UriParser to use StringRef.

llvm-svn: 287190
diff --git a/lldb/source/Plugins/Platform/Android/AdbClient.cpp b/lldb/source/Plugins/Platform/Android/AdbClient.cpp
index 7c9c70a..fbf6dee 100644
--- a/lldb/source/Plugins/Platform/Android/AdbClient.cpp
+++ b/lldb/source/Plugins/Platform/Android/AdbClient.cpp
@@ -185,7 +185,7 @@
 }
 
 Error AdbClient::SetPortForwarding(const uint16_t local_port,
-                                   const char *remote_socket_name,
+                                   llvm::StringRef remote_socket_name,
                                    const UnixSocketNamespace socket_namespace) {
   char message[PATH_MAX];
   const char *sock_namespace_str =
@@ -193,7 +193,7 @@
           ? kSocketNamespaceAbstract
           : kSocketNamespaceFileSystem;
   snprintf(message, sizeof(message), "forward:tcp:%d;%s:%s", local_port,
-           sock_namespace_str, remote_socket_name);
+           sock_namespace_str, remote_socket_name.str().c_str());
 
   const auto error = SendDeviceMessage(message);
   if (error.Fail())