Searched refs:GetByteSize (Results 1 - 25 of 182) sorted by relevance

12345678

/external/lldb/include/lldb/Core/
H A DDataBuffer.h88 GetByteSize() const = 0;
H A DDataBufferHeap.h88 /// @copydoc DataBuffer::GetByteSize() const
91 GetByteSize () const;
H A DDataEncoder.h124 GetByteSize () const function in class:lldb_private::DataEncoder
416 return offset < GetByteSize();
435 const uint32_t size = GetByteSize();
H A DDataBufferMemoryMap.h71 /// @copydoc DataBuffer::GetByteSize() const
74 GetByteSize () const;
H A DValueObjectCast.h36 GetByteSize();
H A DValueObjectVariable.h35 GetByteSize();
H A DValueObjectRegister.h35 GetByteSize();
82 GetByteSize();
140 GetByteSize();
/external/lldb/test/python_api/default-constructor/
H A Dsb_instruction.py10 obj.GetByteSize()
H A Dsb_section.py15 obj.GetByteSize()
H A Dsb_type.py10 obj.GetByteSize()
/external/lldb/source/Core/
H A DAddressRange.cpp50 // const addr_t byte_size = GetByteSize();
67 return (addr.GetOffset() - m_base_addr.GetOffset()) < GetByteSize();
77 return (file_addr - file_base_addr) < GetByteSize();
93 return (file_addr - file_base_addr) < GetByteSize();
103 return (addr.GetOffset() - m_base_addr.GetOffset()) < GetByteSize();
113 return (load_addr - load_base_addr) < GetByteSize();
129 return (load_addr - load_base_addr) < GetByteSize();
159 s->Address (m_base_addr.GetOffset() + GetByteSize(), addr_size);
184 s->AddressRange(vmaddr, vmaddr + GetByteSize(), addr_size);
199 s->Printf("%p: AddressRange section = %p, offset = 0x%16.16" PRIx64 ", byte_size = 0x%16.16" PRIx64 "\n", this, m_base_addr.GetSection().get(), m_base_addr.GetOffset(), GetByteSize());
[all...]
/external/lldb/source/Expression/
H A DClangExpressionVariable.cpp48 ClangExpressionVariable::GetByteSize () function in class:ClangExpressionVariable
50 return m_frozen_sp->GetByteSize();
100 const size_t byte_size = m_frozen_sp->GetByteSize();
103 if (m_frozen_sp->GetDataExtractor().GetByteSize() < byte_size)
H A DMaterializer.cpp52 m_size = type.GetByteSize();
85 lldb::addr_t mem = map.Malloc(m_persistent_variable_sp->GetByteSize(),
107 m_persistent_variable_sp->GetByteSize());
124 m_persistent_variable_sp->GetByteSize(),
238 m_persistent_variable_sp->GetByteSize());
273 log->Printf("Dematerializing %s from 0x%" PRIx64 " (size = %llu)", m_persistent_variable_sp->GetName().GetCString(), (uint64_t)mem, (unsigned long long)m_persistent_variable_sp->GetByteSize());
283 m_persistent_variable_sp->GetByteSize(),
345 DataExtractor extractor (data.GetBytes(), data.GetByteSize(), map.GetByteOrder(), map.GetAddressByteSize());
347 extractor.DumpHexBytes(&dump_stream, data.GetBytes(), data.GetByteSize(), 16, load_addr);
366 DataBufferHeap data (m_persistent_variable_sp->GetByteSize(),
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacinfo.cpp32 if (macinfo_data.GetByteSize() == 0)
/external/lldb/source/Symbol/
H A DSymbol.cpp102 m_size_is_valid (size_is_valid || range.GetByteSize() > 0),
182 return m_size_is_sibling ? m_addr_range.GetByteSize() : 0;
206 const lldb::addr_t byte_size = GetByteSize();
250 GetByteSize();
266 GetByteSize(),
277 GetByteSize(),
312 m_type_data = sc.line_entry.range.GetByteSize();
337 addr.Slide (sc_temp.line_entry.range.GetByteSize());
338 total_offset += sc_temp.line_entry.range.GetByteSize();
340 if (total_offset >= m_addr_range.GetByteSize())
458 Symbol::GetByteSize () const function in class:Symbol
[all...]
/external/lldb/scripts/Python/interface/
H A DSBInstruction.i49 GetByteSize ();
93 __swig_getmethods__["size"] = GetByteSize
94 if _newclass: size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes for this instruction as an integer.''')
H A DSBSection.i75 GetByteSize ();
115 __swig_getmethods__["size"] = GetByteSize
116 if _newclass: size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this section as an integer.''')
/external/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMemory.cpp142 if (process_sp->ReadMemory(m_reg_data_addr, data_sp->GetBytes(), data_sp->GetByteSize(), error) == data_sp->GetByteSize())
162 if (process_sp->WriteMemory(m_reg_data_addr, data_sp->GetBytes(), data_sp->GetByteSize(), error) == data_sp->GetByteSize())
/external/chromium_org/mojo/public/python/mojo/bindings/
H A Dserialization.py69 group.GetByteSize())
77 position = position + group.GetByteSize()
91 group.GetByteSize())
93 position += group.GetByteSize()
116 size = group.GetByteSize()
/external/lldb/include/lldb/API/
H A DSBInstruction.h58 GetByteSize ();
H A DSBSection.h56 GetByteSize ();
/external/lldb/source/API/
H A DSBSection.cpp161 SBSection::GetByteSize () function in class:SBSection
165 return section_sp->GetByteSize();
222 file_size = section_sp->GetByteSize();
229 if (data_buffer_sp && data_buffer_sp->GetByteSize() > 0)
281 strm.Printf ("[0x%16.16" PRIx64 "-0x%16.16" PRIx64 ") ", file_addr, file_addr + section_sp->GetByteSize());
H A DSBSymbol.cpp141 AddressRange symbol_range (m_opaque_ptr->GetAddress(), m_opaque_ptr->GetByteSize());
182 lldb::addr_t range_size = m_opaque_ptr->GetByteSize();
186 addr->Slide (m_opaque_ptr->GetByteSize());
/external/lldb/examples/python/
H A Dcmdtemplate.py63 total_size = total_size + variable_type.GetByteSize()
/external/lldb/include/lldb/Breakpoint/
H A DStoppointLocation.h61 GetByteSize () const function in class:lldb_private::StoppointLocation

Completed in 4894 milliseconds

12345678