| /openbsd/src/gnu/llvm/lldb/include/lldb/Utility/ |
| D | UserID.h | 33 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.
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Host/ |
| D | FileCache.h | 26 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,
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
| D | SymbolFileNativePDB.h | 115 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, 273 lldb::user_id_t anonymous_id = LLDB_INVALID_UID - 1; 278 llvm::DenseMap<lldb::user_id_t, lldb::VariableSP> m_global_vars; 279 llvm::DenseMap<lldb::user_id_t, lldb::VariableSP> m_local_variables; 280 llvm::DenseMap<lldb::user_id_t, lldb::BlockSP> m_blocks; 281 llvm::DenseMap<lldb::user_id_t, lldb::FunctionSP> m_functions; [all …]
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Target/ |
| D | TraceDumper.h | 64 lldb::user_id_t id; 229 lldb::user_id_t GetFirstInstructionID() const; 232 lldb::user_id_t GetLastInstructionID() const; 279 lldb::user_id_t m_first_insn_id; 280 lldb::user_id_t m_last_insn_id; 417 std::optional<lldb::user_id_t> DumpInstructions(size_t count);
|
| D | StackFrame.h | 106 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx, 107 lldb::user_id_t concrete_frame_idx, lldb::addr_t cfa, 111 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx, 112 lldb::user_id_t concrete_frame_idx, 117 StackFrame(const lldb::ThreadSP &thread_sp, lldb::user_id_t frame_idx, 118 lldb::user_id_t concrete_frame_idx,
|
| D | RemoteAwarePlatform.h | 30 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags, 33 bool CloseFile(lldb::user_id_t fd, Status &error) override; 35 uint64_t ReadFile(lldb::user_id_t fd, uint64_t offset, void *dst, 38 uint64_t WriteFile(lldb::user_id_t fd, uint64_t offset, const void *src, 41 lldb::user_id_t GetFileSize(const FileSpec &file_spec) override;
|
| D | TraceCursor.h | 167 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;
|
| D | InstrumentationRuntime.h | 37 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()
|
| /openbsd/src/gnu/llvm/lldb/source/Host/common/ |
| D | FileCache.cpp | 26 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()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| D | DynamicLoaderMacOS.h | 87 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 102 lldb::user_id_t m_break_id; 103 lldb::user_id_t m_dyld_handover_break_id;
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Breakpoint/ |
| D | BreakpointOptions.h | 226 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);
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| D | DynamicLoaderHexagonDYLD.h | 77 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);
|
| /openbsd/src/gnu/llvm/lldb/bindings/interface/ |
| D | SBTraceCursor.i | 28 bool GoToId(lldb::user_id_t id); 30 bool HasId(lldb::user_id_t id) const; 32 lldb::user_id_t GetId() const;
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Symbol/ |
| D | SymbolFile.h | 195 virtual Type *ResolveTypeUID(lldb::user_id_t type_uid) = 0; 209 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid, 214 virtual CompilerDecl GetDeclForUID(lldb::user_id_t uid) { in GetDeclForUID() 217 virtual CompilerDeclContext GetDeclContextForUID(lldb::user_id_t uid) { in GetDeclContextForUID() 220 virtual CompilerDeclContext GetDeclContextContainingUID(lldb::user_id_t uid) { in GetDeclContextContainingUID() 416 MakeType(lldb::user_id_t uid, ConstString name, 418 lldb::user_id_t encoding_uid, 509 lldb::TypeSP MakeType(lldb::user_id_t uid, ConstString name, 512 lldb::user_id_t encoding_uid,
|
| D | SymbolFileOnDemand.h | 99 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; 230 lldb::TypeSP MakeType(lldb::user_id_t uid, ConstString name, 233 lldb::user_id_t encoding_uid,
|
| D | CompileUnit.h | 78 const char *pathname, lldb::user_id_t uid, 117 const FileSpec &file_spec, lldb::user_id_t uid, 322 lldb::FunctionSP FindFunctionByUID(lldb::user_id_t uid); 408 llvm::DenseMap<lldb::user_id_t, lldb::FunctionSP> m_functions_by_uid;
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/API/ |
| D | SBTraceCursor.h | 92 bool GoToId(lldb::user_id_t id); 97 bool HasId(lldb::user_id_t id) const; 102 lldb::user_id_t GetId() const;
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Lua/ |
| D | ScriptInterpreterLua.h | 67 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);
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| D | DynamicLoaderPOSIXDYLD.h | 105 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);
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| D | ClangASTMetadata.h | 29 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;
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/JITLoader/GDB/ |
| D | JITLoaderGDB.h | 63 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 74 lldb::user_id_t m_jit_break_id;
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
| D | DynamicLoaderDarwinKernel.h | 80 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 83 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 290 lldb::user_id_t m_break_id;
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/ |
| D | ObjectFileELF.h | 290 lldb::user_id_t start_id, 295 lldb::user_id_t start_id, 305 lldb::user_id_t start_id, 307 lldb::user_id_t section_id); 314 lldb::user_id_t rel_id, 335 lldb::user_id_t GetSectionIndexByName(const char *name); 338 const ELFSectionHeaderInfo *GetSectionHeaderByIndex(lldb::user_id_t id);
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/StructuredData/DarwinLog/ |
| D | StructuredDataDarwinLog.h | 81 lldb::user_id_t break_id, 82 lldb::user_id_t break_loc_id); 112 lldb::user_id_t m_breakpoint_id;
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/ |
| D | PlatformRemoteGDBServer.h | 111 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;
|