Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:42:51

0001 //===-- LocateSymbolFile.h --------------------------------------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 
0009 #ifndef LLDB_SYMBOL_LOCATESYMBOLFILE_H
0010 #define LLDB_SYMBOL_LOCATESYMBOLFILE_H
0011 
0012 #include <cstdint>
0013 
0014 #include "lldb/Utility/FileSpec.h"
0015 #include "lldb/Utility/FileSpecList.h"
0016 #include "lldb/Utility/Status.h"
0017 #include "lldb/lldb-forward.h"
0018 
0019 namespace lldb_private {
0020 
0021 class ArchSpec;
0022 class ModuleSpec;
0023 class UUID;
0024 
0025 class Symbols {
0026 public:
0027   /// Locate the symbol file for the given UUID on a background thread. This
0028   /// function returns immediately. Under the hood it uses the debugger's
0029   /// thread pool to call DownloadObjectAndSymbolFile. If a symbol file is
0030   /// found, this will notify all target which contain the module with the
0031   /// given UUID.
0032   static void DownloadSymbolFileAsync(const UUID &uuid);
0033 };
0034 
0035 } // namespace lldb_private
0036 
0037 #endif // LLDB_SYMBOL_LOCATESYMBOLFILE_H