HomeSort by relevance Sort by last modified time
    Searched refs:GetByteSize (Results 1 - 25 of 181) sorted by null

1 2 3 4 5 6 7 8

  /external/lldb/include/lldb/Core/
DataBuffer.h 88 GetByteSize() const = 0;
DataBufferHeap.h 88 /// @copydoc DataBuffer::GetByteSize() const
91 GetByteSize () const;
DataBufferMemoryMap.h 71 /// @copydoc DataBuffer::GetByteSize() const
74 GetByteSize () const;
ValueObjectCast.h 36 GetByteSize();
DataEncoder.h 124 GetByteSize () const
416 return offset < GetByteSize();
435 const uint32_t size = GetByteSize();
ValueObjectRegister.h 35 GetByteSize();
82 GetByteSize();
140 GetByteSize();
UUID.h 50 GetByteSize();
ValueObjectChild.h 30 GetByteSize()
ValueObjectMemory.h 45 GetByteSize();
ValueObjectVariable.h 35 GetByteSize();
  /external/lldb/test/python_api/default-constructor/
sb_instruction.py 10 obj.GetByteSize()
sb_section.py 15 obj.GetByteSize()
sb_type.py 10 obj.GetByteSize()
  /external/lldb/source/Core/
AddressRange.cpp 50 // 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/
ClangExpressionVariable.cpp 48 ClangExpressionVariable::GetByteSize ()
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)
Materializer.cpp 52 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(), 0)
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugMacinfo.cpp 32 if (macinfo_data.GetByteSize() == 0)
  /external/lldb/source/Symbol/
Symbol.cpp 102 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())
    [all...]
  /external/lldb/scripts/Python/interface/
SBInstruction.i 49 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.''')
SBSection.i 75 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/
RegisterContextMemory.cpp 142 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/
serialization.py 69 group.GetByteSize())
77 position = position + group.GetByteSize()
91 group.GetByteSize())
93 position += group.GetByteSize()
116 size = group.GetByteSize()
  /external/lldb/include/lldb/API/
SBInstruction.h 58 GetByteSize ();
  /external/lldb/include/lldb/Breakpoint/
StoppointLocation.h 61 GetByteSize () const
  /external/lldb/source/API/
SBSection.cpp 161 SBSection::GetByteSize ()
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());

Completed in 160 milliseconds

1 2 3 4 5 6 7 8