Searched refs:lldb_private (Results 51 - 75 of 890) sorted by relevance

1234567891011>>

/external/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
H A DObjectContainerUniversalMachO.h19 public lldb_private::ObjectContainer
31 static lldb_private::ConstString
37 static lldb_private::ObjectContainer *
41 const lldb_private::FileSpec *file,
46 GetModuleSpecifications (const lldb_private::FileSpec& file,
51 lldb_private::ModuleSpecList &specs);
54 MagicBytesMatch (const lldb_private::DataExtractor &data);
62 const lldb_private::FileSpec *file,
73 Dump (lldb_private::Stream *s) const;
79 GetArchitectureAtIndex (uint32_t cpu_idx, lldb_private
[all...]
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h49 HandshakeWithServer (lldb_private::Error *error_ptr);
81 SendInterrupt (lldb_private::Mutex::Locker &locker,
202 lldb_private::Error
205 lldb_private::Error
207 lldb_private::MemoryRegionInfo &range_info);
209 lldb_private::Error
212 lldb_private::Error
215 lldb_private::Error
218 const lldb_private::ArchSpec &
221 const lldb_private
[all...]
H A DProcessGDBRemoteLog.h38 static lldb_private::Log *
41 static lldb_private::Log *
45 DisableLog (const char **categories, lldb_private::Stream *feedback_strm);
47 static lldb_private::Log *
48 EnableLog (lldb::StreamSP &log_stream_sp, uint32_t log_options, const char **categories, lldb_private::Stream *feedback_strm);
51 ListLogCategories (lldb_private::Stream *strm);
/external/lldb/include/lldb/Expression/
H A DIRToDWARF.h57 IRToDWARF(lldb_private::ClangExpressionVariableList &local_vars,
58 lldb_private::ClangExpressionDeclMap *decl_map,
59 lldb_private::StreamString &strm,
106 lldb_private::ClangExpressionVariableList &m_local_vars; ///< The list of local variables to populate while transforming
107 lldb_private::ClangExpressionDeclMap *m_decl_map; ///< The list of external variables
108 lldb_private::StreamString &m_strm; ///< The stream to write bytecode to
/external/lldb/include/lldb/API/
H A DSBStringList.h55 SBStringList (const lldb_private::StringList *lldb_strings);
57 const lldb_private::StringList *
60 const lldb_private::StringList &
65 std::unique_ptr<lldb_private::StringList> m_opaque_ap;
/external/lldb/include/lldb/Target/
H A DThreadPlanShouldStopHere.h19 namespace lldb_private { namespace
59 lldb_private::Flags &
65 const lldb_private::Flags &
81 lldb_private::Flags m_flags;
92 } // namespace lldb_private
/external/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.h28 namespace lldb_private { namespace
44 } // namespace lldb_private
H A DCommandObjectCommands.h21 namespace lldb_private { namespace
38 } // namespace lldb_private
H A DCommandObjectFrame.h21 namespace lldb_private { namespace
38 } // namespace lldb_private
H A DCommandObjectMemory.h19 namespace lldb_private { namespace
31 } // namespace lldb_private
H A DCommandObjectPlugin.h23 namespace lldb_private { namespace
34 } // namespace lldb_private
H A DCommandObjectProcess.h19 namespace lldb_private { namespace
35 } // namespace lldb_private
H A DCommandObjectSettings.h22 namespace lldb_private { namespace
39 } // namespace lldb_private
H A DCommandObjectSource.h21 namespace lldb_private { namespace
38 } // namespace lldb_private
H A DCommandObjectTarget.h21 namespace lldb_private { namespace
39 } // namespace lldb_private
H A DCommandObjectThread.h19 namespace lldb_private { namespace
32 } // namespace lldb_private
H A DCommandObjectType.h24 namespace lldb_private { namespace
35 } // namespace lldb_private
H A DCommandObjectWatchpointCommand.h28 namespace lldb_private { namespace
44 } // namespace lldb_private
/external/lldb/source/Plugins/Process/Linux/
H A DLinuxSignals.h21 : public lldb_private::UnixSignals
/external/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMemory.h25 class RegisterContextMemory : public lldb_private::RegisterContext
31 RegisterContextMemory (lldb_private::Thread &thread,
48 virtual const lldb_private::RegisterInfo *
54 virtual const lldb_private::RegisterSet *
70 ReadRegister (const lldb_private::RegisterInfo *reg_info,
71 lldb_private::RegisterValue &reg_value);
74 WriteRegister (const lldb_private::RegisterInfo *reg_info,
75 const lldb_private::RegisterValue &reg_value);
92 lldb_private::DataExtractor m_reg_data;
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.h28 class CommunicationKDP : public lldb_private::Communication
38 typedef lldb_private::StreamBuffer<1024> PacketStreamType;
108 WaitForPacketWithTimeoutMicroSeconds (lldb_private::DataExtractor &response,
112 GetSequenceMutex(lldb_private::Mutex::Locker& locker);
117 lldb_private::DataExtractor &packet);
143 return m_packet_timeout * lldb_private::TimeValue::MicroSecPerSec;
149 lldb_private::Error
152 lldb_private::ProcessLaunchInfo &launch_info);
173 lldb_private::Error &error);
179 lldb_private
[all...]
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.h29 class DynamicLoaderDarwinKernel : public lldb_private::DynamicLoader
41 static lldb_private::ConstString
47 static lldb_private::DynamicLoader *
48 CreateInstance (lldb_private::Process *process, bool force);
51 DebuggerInitialize (lldb_private::Debugger &debugger);
53 DynamicLoaderDarwinKernel (lldb_private::Process *process, lldb::addr_t kernel_addr);
71 GetStepThroughTrampolinePlan (lldb_private::Thread &thread,
74 virtual lldb_private::Error
80 virtual lldb_private::ConstString
88 PrivateInitialize (lldb_private
[all...]
/external/lldb/source/API/
H A DSBFileSpec.cpp19 using namespace lldb_private;
24 m_opaque_ap(new lldb_private::FileSpec())
29 m_opaque_ap(new lldb_private::FileSpec(*rhs.m_opaque_ap))
33 SBFileSpec::SBFileSpec (const lldb_private::FileSpec& fspec) :
34 m_opaque_ap(new lldb_private::FileSpec(fspec))
70 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
89 return lldb_private::FileSpec::Resolve (src_path, dst_path, dst_len);
97 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
113 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));
127 Log *log(lldb_private
[all...]
/external/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.h56 Parse(lldb_private::DataExtractor &data, lldb_private::ArchSpec &arch);
59 GetSize(lldb_private::ArchSpec &arch)
63 case lldb_private::ArchSpec::eCore_x86_64_x86_64:
90 Parse(lldb_private::DataExtractor &data, lldb_private::ArchSpec &arch);
93 GetSize(lldb_private::ArchSpec &arch)
97 case lldb_private::ArchSpec::eCore_x86_64_x86_64:
108 lldb_private::DataExtractor gpregset;
109 lldb_private
[all...]
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.h28 class DynamicLoaderMacOSXDYLD : public lldb_private::DynamicLoader
40 static lldb_private::ConstString
46 static lldb_private::DynamicLoader *
47 CreateInstance (lldb_private::Process *process, bool force);
49 DynamicLoaderMacOSXDYLD (lldb_private::Process *process);
69 GetStepThroughTrampolinePlan (lldb_private::Thread &thread,
73 FindEquivalentSymbols (lldb_private::Symbol *original_symbol,
74 lldb_private::ModuleList &module_list,
75 lldb_private::SymbolContextList &equivalent_symbols);
77 virtual lldb_private
[all...]

Completed in 3815 milliseconds

1234567891011>>