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

//===-- ZipFileResolver.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/Host/common/ZipFileResolver.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Utility/DataBuffer.h"
#include "lldb/Utility/FileSpec.h"
#include "lldb/Utility/ZipFile.h"

usingnamespacelldb_private;
usingnamespacellvm::support;

bool ZipFileResolver::ResolveSharedLibraryPath(const FileSpec &file_spec,
                                               FileKind &file_kind,
                                               std::string &file_path,
                                               lldb::offset_t &so_file_offset,
                                               lldb::offset_t &so_file_size) {}