HomeSort by relevance Sort by last modified time
    Searched refs:SBData (Results 1 - 21 of 21) sorted by null

  /external/lldb/source/API/
SBData.cpp 1 //===-- SBData.cpp ----------------------------------------------*- C++ -*-===//
10 #include "lldb/API/SBData.h"
23 SBData::SBData () :
28 SBData::SBData (const lldb::DataExtractorSP& data_sp) :
33 SBData::SBData(const SBData &rhs) :
38 const SBData
    [all...]
Android.mk 22 SBData.cpp \
SBInstruction.cpp 137 SBData
140 lldb::SBData sb_data;
SBSection.cpp 195 SBData
201 SBData
204 SBData sb_data;
SBValue.cpp 800 SBValue::CreateValueFromData (const char* name, SBData data, SBType type)
    [all...]
  /external/lldb/include/lldb/API/
SBData.h 1 //===-- SBData.h -----------------------------------------------*- C++ -*-===//
17 class SBData
21 SBData ();
23 SBData (const SBData &rhs);
25 const SBData &
26 operator = (const SBData &rhs);
28 ~SBData ();
107 Append (const SBData& rhs);
109 static lldb::SBData
    [all...]
SBDefines.h 39 class SBData;
SBSection.h 14 #include "lldb/API/SBData.h"
64 lldb::SBData
67 lldb::SBData
SBError.h 70 friend class SBData;
SBInstruction.h 14 #include "lldb/API/SBData.h"
54 lldb::SBData
SBStream.h 66 friend class SBData;
SBValue.h 13 #include "lldb/API/SBData.h"
170 lldb::SBData data,
257 /// Get an SBData wrapping what this SBValue points to.
261 /// of type T from it, copying their contents in an SBData.
274 /// An SBData with the contents of the copied items, on success.
275 /// An empty SBData otherwise.
277 lldb::SBData
282 /// Get an SBData wrapping the contents of this SBValue.
285 /// and copy them into an SBData for future use.
288 /// An SBData with the contents of this SBValue, on success
    [all...]
  /external/lldb/scripts/Python/interface/
SBData.i 1 //===-- SWIG Interface for SBData -------------------------------*- C++ -*-===//
13 class SBData
17 SBData ();
19 SBData (const SBData &rhs);
21 ~SBData ();
96 Append (const SBData& rhs);
98 static lldb::SBData
103 static lldb::SBData
106 static lldb::SBData
    [all...]
SBSection.i 83 lldb::SBData
86 lldb::SBData
125 if _newclass: data = property(GetSectionData, None, doc='''A read only property that returns an lldb object that represents the bytes for this section (lldb.SBData) for this section.''')
SBInstruction.i 45 lldb::SBData
SBValue.i 249 lldb::SBData data,
357 /// Get an SBData wrapping what this SBValue points to.
361 /// of type T from it, copying their contents in an SBData.
374 /// An SBData with the contents of the copied items, on success.
375 /// An empty SBData otherwise.
378 lldb::SBData
384 /// Get an SBData wrapping the contents of this SBValue.
387 /// and copy them into an SBData for future use.
390 /// An SBData with the contents of this SBValue, on success.
391 /// An empty SBData otherwise
    [all...]
  /external/lldb/test/functionalities/set-data/
TestSetData.py 40 my_data = lldb.SBData.CreateDataFromSInt32Array(lldb.eByteOrderLittle, 8, [4])
55 my_data = lldb.SBData.CreateDataFromUInt64Array(process.GetByteOrder(), 8, [0])
57 my_data = lldb.SBData.CreateDataFromUInt32Array(process.GetByteOrder(), 4, [0])
  /external/lldb/test/python_api/sbdata/
TestSBData.py 1 """Test the SBData APIs."""
13 mydir = os.path.join("python_api", "sbdata")
19 """Test the SBData APIs."""
26 """Test the SBData APIs."""
50 """Test the SBData APIs."""
218 data2 = lldb.SBData()
239 # 11619 (Allow creating SBData values from arrays or primitives in Python)
242 data2 = lldb.SBData.CreateDataFromCString(process.GetByteOrder(),process.GetAddressByteSize(),hello_str)
251 data2 = lldb.SBData.CreateDataFromUInt64Array(process.GetByteOrder(),process.GetAddressByteSize(),[1,2,3,4,5])
260 data2 = lldb.SBData.CreateDataFromSInt32Array(process.GetByteOrder(),process.GetAddressByteSize(),[2, -2]
    [all...]
  /external/lldb/test/python_api/default-constructor/
sb_value.py 55 invalid_data = lldb.SBData()
  /external/lldb/examples/summaries/cocoa/
objc_runtime.py 181 self.rot = self.valobj.CreateValueFromData("rot",lldb.SBData.CreateDataFromUInt64Array(self.sys_params.endianness, self.sys_params.pointer_size, [self.roPointer]),self.sys_params.types_cache.addr_ptr_type)
215 self.rwt = self.valobj.CreateValueFromData("rwt",lldb.SBData.CreateDataFromUInt64Array(self.sys_params.endianness, self.sys_params.pointer_size, [self.dataPointer]),self.sys_params.types_cache.addr_ptr_type)
  /external/lldb/examples/synthetic/
libcxx.py 746 lldb.SBData.CreateDataFromUInt64Array(self.endianness, self.pointer_size, [count]),
754 lldb.SBData.CreateDataFromUInt64Array(self.endianness, self.pointer_size, [count]),

Completed in 346 milliseconds