1*80814287SRaphael Isemann //===-- AbstractSocket.cpp ------------------------------------------------===// 2179c51e0SOleksiy Vyalov // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6179c51e0SOleksiy Vyalov // 7179c51e0SOleksiy Vyalov //===----------------------------------------------------------------------===// 8179c51e0SOleksiy Vyalov 9179c51e0SOleksiy Vyalov #include "lldb/Host/linux/AbstractSocket.h" 10179c51e0SOleksiy Vyalov 11179c51e0SOleksiy Vyalov #include "llvm/ADT/StringRef.h" 12179c51e0SOleksiy Vyalov 13179c51e0SOleksiy Vyalov using namespace lldb; 14179c51e0SOleksiy Vyalov using namespace lldb_private; 15179c51e0SOleksiy Vyalov AbstractSocket(bool child_processes_inherit)1611827799SChris BienemanAbstractSocket::AbstractSocket(bool child_processes_inherit) 1711827799SChris Bieneman : DomainSocket(ProtocolUnixAbstract, child_processes_inherit) {} 18179c51e0SOleksiy Vyalov GetNameOffset() const19b9c1b51eSKate Stonesize_t AbstractSocket::GetNameOffset() const { return 1; } 20179c51e0SOleksiy Vyalov DeleteSocketFile(llvm::StringRef name)21b9c1b51eSKate Stonevoid AbstractSocket::DeleteSocketFile(llvm::StringRef name) {} 22