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

1 2 3 4

  /external/chromium_org/cloud_print/gcp20/prototype/
dns_packet_parser.h 51 size_t GetOffset() const { return record_parser_.GetOffset(); }
61 return record_parser_.ReadName(packet_ + GetOffset(), out);
dns_packet_parser.cc 29 base::BigEndianReader reader(packet_ + GetOffset() + consumed,
30 length_ - (GetOffset() + consumed));
  /external/lldb/source/Core/
AddressRange.cpp 52 // return addr.GetSection() == m_base_addr.GetSection() && (addr.GetOffset() - m_base_addr.GetOffset()) < byte_size;
67 return (addr.GetOffset() - m_base_addr.GetOffset()) < GetByteSize();
103 return (addr.GetOffset() - m_base_addr.GetOffset()) < GetByteSize();
159 s->Address (m_base_addr.GetOffset() + 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());
  /art/runtime/mirror/
string-inl.h 68 return GetCharArray()->Get(index + GetOffset());
76 DCHECK(result != 0 || ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()) == 0)
art_field-inl.h 55 inline MemberOffset ArtField::GetOffset() {
69 return object->GetField32Volatile(GetOffset());
71 return object->GetField32(GetOffset());
79 object->SetField32Volatile<kTransactionActive>(GetOffset(), new_value);
81 object->SetField32<kTransactionActive>(GetOffset(), new_value);
89 return object->GetField64Volatile(GetOffset());
91 return object->GetField64(GetOffset());
99 object->SetField64Volatile<kTransactionActive>(GetOffset(), new_value);
101 object->SetField64<kTransactionActive>(GetOffset(), new_value);
109 return object->GetFieldObjectVolatile<Object>(GetOffset());
    [all...]
string.cc 43 const uint16_t* chars = GetCharArray()->GetData() + GetOffset();
66 const int32_t hash_code = ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength());
72 return CountUtf8Bytes(GetCharArray()->GetData() + GetOffset(), GetLength());
194 const uint16_t* chars = GetCharArray()->GetData() + GetOffset();
217 const uint16_t* lhsChars = lhs->GetCharArray()->GetData() + lhs->GetOffset();
218 const uint16_t* rhsChars = rhs->GetCharArray()->GetData() + rhs->GetOffset();
art_field.cc 69 if (field->GetOffset().Uint32Value() == field_offset) {
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFCompileUnit.cpp 117 bool abbrevs_OK = debug_info_data.GetU32(&offset) == abbrevs->GetOffset();
183 GetOffset());
201 // die.GetOffset(),
278 GetOffset(),
307 return m_abbrevs ? m_abbrevs->GetOffset() : DW_INVALID_OFFSET;
420 debug_aranges->AppendRange(GetOffset(), range.GetRangeBase(), range.GetRangeEnd());
421 printf ("0x%8.8x: [0x%16.16" PRIx64 " - 0x%16.16" PRIx64 ")\n", GetOffset(), range.GetRangeBase(), range.GetRangeEnd());
450 GetOffset());
504 return die1.GetOffset() < die2.GetOffset();
    [all...]
DWARFDIECollection.cpp 61 s->Printf( "0x%8.8x\n", (*pos)->GetOffset());
SymbolFileDWARF.cpp 138 die->GetOffset(),
250 const dw_offset_t die_offset = die->GetOffset();
322 dwarf_cu->GetOffset(),
718 data.SetData(m_dwarf_data, section_sp->GetOffset (), section_sp->GetFileSize());
959 MakeUserID(dwarf_cu->GetOffset()),
967 DebugInfo()->GetCompileUnit(dwarf_cu->GetOffset(), &cu_idx);
    [all...]
DWARFDebugAbbrev.h 44 dw_offset_t GetOffset() const { return m_offset; }
DWARFDebugPubnames.cpp 97 dw_offset_t cu_offset = cu->GetOffset();
191 pubnames_set.AddDescriptor(die->GetOffset() - cu_offset, mangled ? mangled : name);
227 dw_offset_t cu_offset = cu->GetOffset();
238 pubnames_set.AddDescriptor(die->GetOffset() - cu_offset, name);
DWARFDebugInfo.cpp 203 return a->GetOffset() < b->GetOffset();
211 const dw_offset_t cu_offset = ((DWARFCompileUnitSP *)arrmem)->get()->GetOffset();
253 dw_offset_t cu_start_offset = (*pos)->GetOffset();
270 return die1.GetOffset() < die2.GetOffset();
513 if (dumpInfo->die_offset == die->GetOffset())
553 else if (dumpInfo->die_offset > die->GetOffset())
748 info->die_offsets.push_back(die->GetOffset());
753 info->die_offsets.push_back(die->GetOffset());
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
fenced_allocator.h 197 allocator_.Free(GetOffset(pointer));
208 allocator_.FreePendingToken(GetOffset(pointer), token);
225 FencedAllocator::Offset GetOffset(void *pointer) {
transfer_buffer.h 48 virtual RingBuffer::Offset GetOffset(void* pointer) const = 0;
75 virtual RingBuffer::Offset GetOffset(void* pointer) const OVERRIDE;
159 return transfer_buffer_->GetOffset(buffer_);
mapped_memory.h 67 unsigned int GetOffset(void* pointer) {
68 return allocator_.GetOffset(pointer);
mapped_memory.cc 60 *shm_offset = chunk->GetOffset(mem);
77 *shm_offset = chunk->GetOffset(mem);
101 *shm_offset = mc->GetOffset(mem);
ring_buffer.h 73 RingBuffer::Offset GetOffset(void* pointer) const {
transfer_buffer.cc 72 RingBuffer::Offset TransferBuffer::GetOffset(void* pointer) const {
73 return ring_buffer_->GetOffset(pointer);
  /external/lldb/scripts/Python/interface/
SBAddress.i 89 SBAddress::GetOffset ();
184 __swig_getmethods__["offset"] = GetOffset
185 if _newclass: offset = property(GetOffset, None, doc='''A read only property that returns the section offset in bytes as an integer.''')
  /external/chromium_org/net/dns/
dns_response.h 56 size_t GetOffset() const { return cur_ - packet_; }
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_elf_view.h 81 uintptr_t GetOffset() const { return dyn_->d_un.d_ptr; }
  /external/lldb/include/lldb/Symbol/
ObjectContainer.h 128 GetOffset () const
  /ndk/sources/android/crazy_linker/src/
crazy_linker_elf_view.h 81 uintptr_t GetOffset() const { return dyn_->d_un.d_ptr; }
  /external/lldb/include/lldb/Expression/
Materializer.h 106 return m_result_entity->GetOffset();
141 uint32_t GetOffset ()

Completed in 1328 milliseconds

1 2 3 4