LLDB mainline
AbstractSocket.cpp
Go to the documentation of this file.
1//===-- AbstractSocket.cpp ------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10
11#include "llvm/ADT/StringRef.h"
12
13using namespace lldb;
14using namespace lldb_private;
15
17
19 : DomainSocket(ProtocolUnixAbstract, socket, should_close) {}
20
21size_t AbstractSocket::GetNameOffset() const { return 1; }
22
23void AbstractSocket::DeleteSocketFile(llvm::StringRef name) {}
void DeleteSocketFile(llvm::StringRef name) override
size_t GetNameOffset() const override
DomainSocket(NativeSocket socket, bool should_close)
A class that represents a running process on the host machine.
int NativeSocket
Definition Socket.h:41