Home
last modified time | relevance | path

Searched refs:user_id_t (Results 1 – 25 of 151) sorted by relevance

1234567

/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUserID.h33 UserID(lldb::user_id_t uid = LLDB_INVALID_UID) : m_uid(uid) {} in m_uid()
47 lldb::user_id_t GetID() const { return m_uid; } in GetID()
53 void SetID(lldb::user_id_t uid) { m_uid = uid; } in SetID()
65 IDMatches(lldb::user_id_t uid) : m_uid(uid) {} in IDMatches()
72 const lldb::user_id_t m_uid; ///< The user ID we are looking for
77 lldb::user_id_t m_uid; ///< The user ID that uniquely identifies an object.
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileCache.h26 typedef std::map<lldb::user_id_t, lldb::FileUP> FDToFileMap;
31 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
33 bool CloseFile(lldb::user_id_t fd, Status &error);
35 uint64_t WriteFile(lldb::user_id_t fd, uint64_t offset, const void *src,
37 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.h89 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
91 lldb::user_id_t type_uid,
214 lldb::user_id_t uid); in GetStructSize()
245 llvm::DenseMap<lldb::user_id_t, std::unique_ptr<CTFType>> m_ctf_types;
248 llvm::DenseMap<lldb::user_id_t, lldb::TypeSP> m_types;
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h115 CompilerDecl GetDeclForUID(lldb::user_id_t uid) override;
116 CompilerDeclContext GetDeclContextForUID(lldb::user_id_t uid) override;
117 CompilerDeclContext GetDeclContextContainingUID(lldb::user_id_t uid) override;
118 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
120 lldb::user_id_t type_uid,
267 lldb::user_id_t anonymous_id = LLDB_INVALID_UID - 1;
272 llvm::DenseMap<lldb::user_id_t, lldb::VariableSP> m_global_vars;
273 llvm::DenseMap<lldb::user_id_t, lldb::VariableSP> m_local_variables;
274 llvm::DenseMap<lldb::user_id_t, lldb::BlockSP> m_blocks;
275 llvm::DenseMap<lldb::user_id_t, lldb::FunctionSP> m_functions;
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTraceDumper.h65 lldb::user_id_t id;
230 lldb::user_id_t GetFirstInstructionID() const;
233 lldb::user_id_t GetLastInstructionID() const;
280 lldb::user_id_t m_first_insn_id;
281 lldb::user_id_t m_last_insn_id;
418 std::optional<lldb::user_id_t> DumpInstructions(size_t count);
H A DStackFrame.h108 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx,
109 lldb::user_id_t concrete_frame_idx, lldb::addr_t cfa,
113 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx,
114 lldb::user_id_t concrete_frame_idx,
119 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx,
120 lldb::user_id_t concrete_frame_idx,
H A DRemoteAwarePlatform.h31 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
34 bool CloseFile(lldb::user_id_t fd, Status &error) override;
36 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst,
39 uint64_t WriteFile(lldb::user_id_t fd, uint64_t offset, const void *src,
42 lldb::user_id_t GetFileSize(const FileSpec &file_spec) override;
H A DTraceCursor.h167 virtual bool GoToId(lldb::user_id_t id) = 0;
172 virtual bool HasId(lldb::user_id_t id) const = 0;
177 virtual lldb::user_id_t GetId() const = 0;
H A DInstrumentationRuntime.h37 lldb::user_id_t m_breakpoint_id;
58 lldb::user_id_t GetBreakpointID() const { return m_breakpoint_id; } in GetBreakpointID()
60 void SetBreakpointID(lldb::user_id_t ID) { m_breakpoint_id = ID; } in SetBreakpointID()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DFileCache.cpp26 lldb::user_id_t FileCache::OpenFile(const FileSpec &file_spec, in OpenFile()
38 lldb::user_id_t fd = file.get()->GetDescriptor(); in OpenFile()
43 bool FileCache::CloseFile(lldb::user_id_t fd, Status &error) { in CloseFile()
63 uint64_t FileCache::WriteFile(lldb::user_id_t fd, uint64_t offset, in WriteFile()
90 uint64_t FileCache::ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, in ReadFile()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h226 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
334 lldb::user_id_t break_id,
335 lldb::user_id_t break_loc_id);
371 void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id,
372 lldb::user_id_t break_loc_id);
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFile.h209 virtual Type *ResolveTypeUID(lldb::user_id_t type_uid) = 0;
223 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,
228 virtual CompilerDecl GetDeclForUID(lldb::user_id_t uid) { return {}; } in GetDeclForUID()
229 virtual CompilerDeclContext GetDeclContextForUID(lldb::user_id_t uid) { in GetDeclContextForUID()
232 virtual CompilerDeclContext GetDeclContextContainingUID(lldb::user_id_t uid) { in GetDeclContextContainingUID()
236 GetCompilerContextForUID(lldb::user_id_t uid) { in GetCompilerContextForUID()
465 MakeType(lldb::user_id_t uid, ConstString name,
467 lldb::user_id_t encoding_uid,
569 lldb::TypeSP MakeType(lldb::user_id_t uid, ConstString name,
572 lldb::user_id_t encoding_uid,
H A DSymbolFileOnDemand.h99 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
101 lldb::user_id_t type_uid,
106 lldb_private::CompilerDecl GetDeclForUID(lldb::user_id_t uid) override;
109 GetDeclContextForUID(lldb::user_id_t uid) override;
112 GetDeclContextContainingUID(lldb::user_id_t uid) override;
227 lldb::TypeSP MakeType(lldb::user_id_t uid, ConstString name,
230 lldb::user_id_t encoding_uid,
H A DCompileUnit.h78 const char *pathname, lldb::user_id_t uid,
119 lldb::SupportFileSP support_file_sp, lldb::user_id_t uid,
338 lldb::FunctionSP FindFunctionByUID(lldb::user_id_t uid);
421 llvm::DenseMap<lldb::user_id_t, lldb::FunctionSP> m_functions_by_uid;
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.h77 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
108 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h67 lldb::user_id_t break_id,
68 lldb::user_id_t break_loc_id);
72 lldb::user_id_t watch_id);
79 llvm::Error EnterSession(lldb::user_id_t debugger_id);
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTraceCursor.h88 bool GoToId(lldb::user_id_t id);
93 bool HasId(lldb::user_id_t id) const;
98 lldb::user_id_t GetId() const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.h105 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
143 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.h90 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
92 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,
95 CompilerDeclContext GetDeclContextForUID(lldb::user_id_t uid) override;
96 CompilerDeclContext GetDeclContextContainingUID(lldb::user_id_t uid) override;
98 GetCompilerContextForUID(lldb::user_id_t uid) override;
204 static uint32_t GetOSOIndexFromUserID(lldb::user_id_t uid) { in GetOSOIndexFromUserID()
253 CompileUnitInfo *GetCompileUnitInfoForSymbolWithID(lldb::user_id_t symbol_id,
260 static int SymbolContainsSymbolWithID(lldb::user_id_t *symbol_idx_ptr,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTMetadata.h29 void SetUserID(lldb::user_id_t user_id) { in SetUserID()
35 lldb::user_id_t GetUserID() const { in GetUserID()
100 lldb::user_id_t m_user_id;
/freebsd/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.h63 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
74 lldb::user_id_t m_jit_break_id;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h294 ParseSymbolTable(lldb_private::Symtab *symbol_table, lldb::user_id_t start_id,
299 ParseSymbols(lldb_private::Symtab *symbol_table, lldb::user_id_t start_id,
309 lldb::user_id_t start_id,
311 lldb::user_id_t section_id);
318 lldb::user_id_t rel_id,
339 lldb::user_id_t GetSectionIndexByName(const char *name);
342 const ELFSectionHeaderInfo *GetSectionHeaderByIndex(lldb::user_id_t id);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h111 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
114 bool CloseFile(lldb::user_id_t fd, Status &error) override;
116 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *data_ptr,
119 uint64_t WriteFile(lldb::user_id_t fd, uint64_t offset, const void *data,
122 lldb::user_id_t GetFileSize(const FileSpec &file_spec) override;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceCursorIntelPT.h43 bool GoToId(lldb::user_id_t id) override;
45 lldb::user_id_t GetId() const override;
47 bool HasId(lldb::user_id_t id) const override;
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h81 lldb::user_id_t break_id,
82 lldb::user_id_t break_loc_id);
112 lldb::user_id_t m_breakpoint_id;

1234567