llvm/lldb/source/Host/common/FileAction.cpp

//===-- FileAction.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 <fcntl.h>

#include "lldb/Host/FileAction.h"
#include "lldb/Host/PosixApi.h"
#include "lldb/Utility/Stream.h"

usingnamespacelldb_private;

// FileAction member functions

FileAction::FileAction() :{}

void FileAction::Clear() {}

llvm::StringRef FileAction::GetPath() const {}

const FileSpec &FileAction::GetFileSpec() const {}

bool FileAction::Open(int fd, const FileSpec &file_spec, bool read,
                      bool write) {}

bool FileAction::Close(int fd) {}

bool FileAction::Duplicate(int fd, int dup_fd) {}

void FileAction::Dump(Stream &stream) const {}