llvm/lldb/source/Utility/GDBRemote.cpp

//===-- GDBRemote.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/GDBRemote.h"

#include "lldb/Utility/Flags.h"
#include "lldb/Utility/Stream.h"

#include <cstdio>

usingnamespacelldb;
usingnamespacelldb_private;
usingnamespacellvm;

StreamGDBRemote::StreamGDBRemote() :{}

StreamGDBRemote::StreamGDBRemote(uint32_t flags, uint32_t addr_size,
                                 ByteOrder byte_order)
    :{}

StreamGDBRemote::~StreamGDBRemote() = default;

int StreamGDBRemote::PutEscapedBytes(const void *s, size_t src_len) {}

llvm::StringRef GDBRemotePacket::GetTypeStr() const {}

void GDBRemotePacket::Dump(Stream &strm) const {}