HomeSort by relevance Sort by last modified time
    Searched refs:lldb (Results 251 - 275 of 1230) sorted by null

<<11121314151617181920>>

  /external/lldb/include/lldb/Core/
ValueObject.h 21 #include "lldb/lldb-private.h"
22 #include "lldb/Core/DataExtractor.h"
23 #include "lldb/Core/Error.h"
24 #include "lldb/Core/Flags.h"
25 #include "lldb/Core/ConstString.h"
26 #include "lldb/Core/UserID.h"
27 #include "lldb/Core/Value.h"
28 #include "lldb/Target/ExecutionContext.h"
29 #include "lldb/Target/ExecutionContextScope.h
    [all...]
Listener.h 24 #include "lldb/lldb-private.h"
25 #include "lldb/Host/Predicate.h"
26 #include "lldb/Core/Event.h"
33 typedef bool (*HandleBroadcastCallback) (lldb::EventSP &event_sp, void *baton);
46 AddEvent (lldb::EventSP &event);
82 lldb::EventSP &event_sp);
87 lldb::EventSP &event_sp);
93 lldb::EventSP &event_sp);
106 GetNextEvent (lldb::EventSP &event_sp)
    [all...]
  /external/lldb/include/lldb/Interpreter/
OptionGroupValueObjectDisplay.h 17 #include "lldb/Core/ValueObject.h"
18 #include "lldb/Interpreter/Options.h"
67 lldb::Format format = lldb::eFormatDefault,
68 lldb::TypeSummaryImplSP summary_sp = lldb::TypeSummaryImplSP());
77 lldb::DynamicValueType use_dynamic;
OptionValueArray.h 19 #include "lldb/Interpreter/OptionValue.h"
63 virtual lldb::OptionValueSP
72 virtual lldb::OptionValueSP
88 lldb::OptionValueSP
91 lldb::OptionValueSP value_sp;
97 lldb::OptionValueSP
100 lldb::OptionValueSP value_sp;
107 AppendValue (const lldb::OptionValueSP &value_sp)
120 InsertValue (size_t idx, const lldb::OptionValueSP &value_sp)
136 ReplaceValue (size_t idx, const lldb::OptionValueSP &value_sp
    [all...]
CommandReturnObject.h 17 #include "lldb/lldb-private.h"
18 #include "lldb/Core/STLUtils.h"
19 #include "lldb/Core/StreamFile.h"
20 #include "lldb/Core/StreamString.h"
21 #include "lldb/Core/StreamTee.h"
37 lldb::StreamSP stream_sp (m_out_stream.GetStreamAtIndex (eStreamStringIndex));
46 lldb::StreamSP stream_sp (m_err_stream.GetStreamAtIndex (eStreamStringIndex));
57 lldb::StreamSP stream_sp (m_out_stream.GetStreamAtIndex (eStreamStringIndex));
70 lldb::StreamSP stream_sp (m_err_stream.GetStreamAtIndex (eStreamStringIndex))
    [all...]
  /external/lldb/source/
Makefile 22 SOURCES := lldb-log.cpp lldb.cpp
27 LLDB_vers.c: $(PROJ_SRC_DIR)/$(LLDB_LEVEL)/scripts/generate-vers.pl $(PROJ_SRC_DIR)/$(LLDB_LEVEL)/lldb.xcodeproj/project.pbxproj
28 "$(PROJ_SRC_DIR)/$(LLDB_LEVEL)/scripts/generate-vers.pl" "$(PROJ_SRC_DIR)/$(LLDB_LEVEL)/lldb.xcodeproj/project.pbxproj" > LLDB_vers.c
31 $(shell $(LLVM_SRC_ROOT)/utils/GetSourceVersion $(LLVM_SRC_ROOT)/tools/lldb))
34 $(shell $(LLVM_SRC_ROOT)/utils/GetRepositoryPath $(LLVM_SRC_ROOT)/tools/lldb))
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextMemory.h 19 #include "lldb/lldb-private.h"
20 #include "lldb/Core/DataExtractor.h"
21 #include "lldb/Target/RegisterContext.h"
34 lldb::addr_t reg_data_addr);
78 ReadAllRegisterValues (lldb::DataBufferSP &data_sp);
81 WriteAllRegisterValues (const lldb::DataBufferSP &data_sp);
84 SetAllRegisterData (const lldb::DataBufferSP &data_sp);
93 lldb::addr_t m_reg_data_addr; // If this is valid, then we have a register context that is stored in memmory
  /external/lldb/include/lldb/Breakpoint/
BreakpointOptions.h 17 #include "lldb/lldb-private.h"
18 #include "lldb/Core/Baton.h"
19 #include "lldb/Core/StringList.h"
24 /// @class BreakpointOptions BreakpointOptions.h "lldb/Breakpoint/BreakpointOptions.h"
69 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID,
113 void SetCallback (BreakpointHitCallback callback, const lldb::BatonSP &baton_sp, bool synchronous = false);
140 bool InvokeCallback (StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
274 SetThreadID(lldb::tid_t thread_id)
    [all...]
  /external/lldb/include/lldb/Target/
StackFrameList.h 19 #include "lldb/Host/Mutex.h"
20 #include "lldb/Target/StackFrame.h"
31 const lldb::StackFrameListSP &prev_frames_sp,
39 lldb::StackFrameSP
42 lldb::StackFrameSP
45 lldb::StackFrameSP
83 lldb::StackFrameSP
98 SetFrameAtIndex (uint32_t idx, lldb::StackFrameSP &frame_sp);
102 lldb::StackFrameListSP& prev_sp);
134 typedef std::vector<lldb::StackFrameSP> collection
    [all...]
  /external/lldb/scripts/Python/interface/
SBError.i 10 namespace lldb {
27 listener = lldb.SBListener('my.attach.listener')
28 error = lldb.SBError()
40 listener = lldb.SBListener('my.attach.listener')
41 error = lldb.SBError()
52 error = lldb.SBError()
63 SBError (const lldb::SBError &rhs);
82 lldb::ErrorType
86 SetError (uint32_t err, lldb::ErrorType type);
104 GetDescription (lldb::SBStream &description)
    [all...]
SBExpressionOptions.i 10 namespace lldb {
24 SBExpressionOptions (const lldb::SBExpressionOptions &rhs);
52 lldb::DynamicValueType
58 SetFetchDynamicValue (lldb::DynamicValueType dynamic = lldb::eDynamicCanRunTarget);
89 } // namespace lldb
  /external/lldb/test/python_api/default-constructor/
sb_value.py 2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
6 import lldb namespace
16 obj.SetFormat(lldb.eFormatBoolean)
25 obj.GetChildAtIndex(2, lldb.eNoDynamicValues, False)
28 obj.GetChildMemberWithName("my_first_child", lldb.eNoDynamicValues)
33 stream = lldb.SBStream()
37 error = lldb.SBError()
42 error = lldb.SBError()
47 obj.GetDynamicValue (lldb.eNoDynamicValues)
50 invalid_type = lldb.SBType(
    [all...]
TestDefaultConstructorForAPIObjects.py 2 Test lldb Python API object's default constructor and make sure it is invalid
7 C++ API counterpart. Passing None should not crash lldb!
17 import lldb, lldbutil namespace
26 obj = lldb.SBAddress()
30 # Do fuzz testing on the invalid obj, it should not crash lldb.
36 obj = lldb.SBBlock()
40 # Do fuzz testing on the invalid obj, it should not crash lldb.
46 obj = lldb.SBBreakpoint()
50 # Do fuzz testing on the invalid obj, it should not crash lldb.
56 obj = lldb.SBBreakpointLocation(
    [all...]
  /external/lldb/examples/summaries/cocoa/
CFBag.py 2 LLDB AppKit formatters
9 # the real summary is now C++ code built into LLDB
10 import lldb namespace
12 import lldb.runtime.objc.objc_runtime namespace
13 import lldb.formatters.metrics namespace
14 import lldb.formatters.Logger namespace
16 statistics = lldb.formatters.metrics.Metrics()
30 logger = lldb.formatters.Logger.Logger()
35 self.sys_params.types_cache.NSUInteger = self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong)
37 self.sys_params.types_cache.NSUInteger = self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt
    [all...]
CFBinaryHeap.py 2 LLDB AppKit formatters
9 # the real summary is now C++ code built into LLDB
10 import lldb namespace
12 import lldb.runtime.objc.objc_runtime namespace
13 import lldb.formatters.metrics namespace
14 import lldb.formatters.Logger namespace
16 statistics = lldb.formatters.metrics.Metrics()
30 logger = lldb.formatters.Logger.Logger()
35 self.sys_params.types_cache.NSUInteger = self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong)
37 self.sys_params.types_cache.NSUInteger = self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt
    [all...]
NSException.py 2 LLDB AppKit formatters
9 import lldb.runtime.objc.objc_runtime namespace
10 import lldb.formatters.metrics namespace
12 import lldb namespace
13 import lldb.formatters.Logger namespace
15 statistics = lldb.formatters.metrics.Metrics()
26 logger = lldb.formatters.Logger.Logger()
30 self.sys_params.types_cache.id = self.valobj.GetType().GetBasicType(lldb.eBasicTypeObjCID)
34 logger = lldb.formatters.Logger.Logger()
38 logger = lldb.formatters.Logger.Logger(
    [all...]
NSMachPort.py 2 LLDB AppKit formatters
9 # the real summary is now C++ code built into LLDB
10 import lldb namespace
12 import lldb.runtime.objc.objc_runtime namespace
13 import lldb.formatters.metrics namespace
14 import lldb.formatters.Logger namespace
16 statistics = lldb.formatters.metrics.Metrics()
30 logger = lldb.formatters.Logger.Logger()
35 self.sys_params.types_cache.NSUInteger = self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong)
37 self.sys_params.types_cache.NSUInteger = self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt
    [all...]
NSDate.py 2 LLDB AppKit formatters
9 # the real summary is now C++ code built into LLDB
10 import lldb namespace
12 import lldb.runtime.objc.objc_runtime namespace
13 import lldb.formatters.metrics namespace
18 import lldb.formatters.Logger namespace
20 statistics = lldb.formatters.metrics.Metrics()
33 logger = lldb.formatters.Logger.Logger()
39 logger = lldb.formatters.Logger.Logger()
47 logger = lldb.formatters.Logger.Logger(
    [all...]
NSSet.py 2 LLDB AppKit formatters
9 import lldb namespace
11 import lldb.runtime.objc.objc_runtime namespace
12 import lldb.formatters.metrics namespace
14 import lldb.formatters.Logger namespace
16 statistics = lldb.formatters.metrics.Metrics()
30 logger = lldb.formatters.Logger.Logger()
35 self.sys_params.types_cache.NSUInteger = self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong)
37 self.sys_params.types_cache.NSUInteger = self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt)
41 logger = lldb.formatters.Logger.Logger(
    [all...]
NSNotification.py 2 LLDB AppKit formatters
9 # the real summary is now C++ code built into LLDB
10 import lldb.runtime.objc.objc_runtime namespace
11 import lldb.formatters.metrics namespace
13 import lldb namespace
14 import lldb.formatters.Logger namespace
16 statistics = lldb.formatters.metrics.Metrics()
27 logger = lldb.formatters.Logger.Logger()
31 self.sys_params.types_cache.id = self.valobj.GetType().GetBasicType(lldb.eBasicTypeObjCID)
35 logger = lldb.formatters.Logger.Logger(
    [all...]
  /external/lldb/include/lldb/Expression/
IRExecutionUnit.h 24 #include "lldb/lldb-forward.h"
25 #include "lldb/lldb-private.h"
26 #include "lldb/Core/ClangForward.h"
27 #include "lldb/Core/DataBufferHeap.h"
29 #include "lldb/Expression/ClangExpression.h"
30 #include "lldb/Expression/ClangExpressionParser.h"
31 #include "lldb/Expression/IRMemoryMap.h"
32 #include "lldb/Host/Mutex.h
    [all...]
Materializer.h 13 #include "lldb/lldb-private-types.h"
14 #include "lldb/Core/Error.h"
15 #include "lldb/Expression/IRMemoryMap.h"
16 #include "lldb/Host/Mutex.h"
17 #include "lldb/Symbol/SymbolContext.h"
18 #include "lldb/Target/StackFrame.h"
47 lldb::ClangExpressionVariableSP &result_sp,
48 lldb::addr_t frame_top,
49 lldb::addr_t frame_bottom)
    [all...]
  /external/lldb/source/API/
SBTypeSynthetic.cpp 10 #include "lldb/lldb-python.h"
12 #include "lldb/API/SBTypeSynthetic.h"
14 #include "lldb/API/SBStream.h"
16 #include "lldb/DataFormatters/DataVisualization.h"
18 using namespace lldb;
44 SBTypeSynthetic::SBTypeSynthetic (const lldb::SBTypeSynthetic &rhs) :
105 return lldb::eTypeOptionNone;
118 SBTypeSynthetic::GetDescription (lldb::SBStream &description,
119 lldb::DescriptionLevel description_level
    [all...]
SBData.cpp 10 #include "lldb/API/SBData.h"
11 #include "lldb/API/SBError.h"
12 #include "lldb/API/SBStream.h"
14 #include "lldb/Core/DataBufferHeap.h"
15 #include "lldb/Core/DataExtractor.h"
16 #include "lldb/Core/Log.h"
17 #include "lldb/Core/Stream.h"
20 using namespace lldb;
28 SBData::SBData (const lldb::DataExtractorSP& data_sp) :
51 SBData::SetOpaque (const lldb::DataExtractorSP &data_sp
    [all...]
  /external/lldb/source/Plugins/ObjectFile/ELF/
ObjectFileELF.h 16 #include "lldb/lldb-private.h"
17 #include "lldb/Host/FileSpec.h"
18 #include "lldb/Symbol/ObjectFile.h"
19 #include "lldb/Core/UUID.h"
49 CreateInstance(const lldb::ModuleSP &module_sp,
50 lldb::DataBufferSP& data_sp,
51 lldb::offset_t data_offset,
53 lldb::offset_t file_offset,
54 lldb::offset_t length)
    [all...]

Completed in 808 milliseconds

<<11121314151617181920>>