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

  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFLocationDescription.cpp 55 uint8_t opcode = data.GetU8(offset_ptr);
159 case -1: sint = (int8_t) data.GetU8(offset_ptr); s.Printf("%+" PRIi64, sint); break;
164 case 1: uint = data.GetU8(offset_ptr); s.Printf("0x%2.2" PRIx64, uint); break;
DWARFDebugMacinfoEntry.cpp 87 m_type_code = mac_info_data.GetU8(offset_ptr);
DWARFDebugLine.cpp 203 log->Printf( "0x%8.8" PRIx64 ": skipping pad byte %2.2x", offset, debug_line_data.GetU8(&offset));
215 uint8_t opcode = debug_line_data.GetU8(&offset);
224 uint8_t sub_opcode = debug_line_data.GetU8(&offset);
420 prologue->min_inst_length = debug_line_data.GetU8(offset_ptr);
421 prologue->default_is_stmt = debug_line_data.GetU8(offset_ptr);
422 prologue->line_base = debug_line_data.GetU8(offset_ptr);
423 prologue->line_range = debug_line_data.GetU8(offset_ptr);
424 prologue->opcode_base = debug_line_data.GetU8(offset_ptr);
430 uint8_t op_len = debug_line_data.GetU8(offset_ptr);
487 const uint8_t opcode_base = debug_line_data.GetU8(&offset)
    [all...]
DWARFFormValue.cpp 141 case DW_FORM_block1: m_value.value.uval = data.GetU8(offset_ptr); is_block = true; break;
142 case DW_FORM_data1: m_value.value.uval = data.GetU8(offset_ptr); break;
143 case DW_FORM_flag: m_value.value.uval = data.GetU8(offset_ptr); break;
154 case DW_FORM_ref1: m_value.value.uval = data.GetU8(offset_ptr); break;
200 case DW_FORM_block1: { dw_uleb128_t size = debug_info_data.GetU8(offset_ptr); *offset_ptr += size; } return true;
DWARFDebugArangeSet.cpp 189 m_header.addr_size = data.GetU8(offset_ptr);
190 m_header.seg_size = data.GetU8(offset_ptr);
DWARFAbbreviationDeclaration.cpp 48 m_has_children = data.GetU8(offset_ptr);
DWARFCompileUnit.cpp 85 m_addr_size = debug_info.GetU8 (offset_ptr);
119 m_addr_size = debug_info_data.GetU8 (&offset);
    [all...]
DWARFDebugInfoEntry.cpp 342 case DW_FORM_block1 : form_size = debug_info_data.GetU8(&offset); break;
    [all...]
  /external/lldb/source/Symbol/
DWARFCallFrameInfo.cpp 159 cie_sp->version = m_cfi_data.GetU8(&offset);
163 cie_sp->augmentation[i] = m_cfi_data.GetU8(&offset);
181 cie_sp->return_addr_reg_num = m_cfi_data.GetU8(&offset);
213 m_cfi_data.GetU8(&offset);
225 uint8_t arg_ptr_encoding = m_cfi_data.GetU8(&offset);
237 cie_sp->ptr_encoding = m_cfi_data.GetU8(&offset);
260 uint8_t inst = m_cfi_data.GetU8(&offset);
450 uint8_t inst = m_cfi_data.GetU8(&offset);
535 row->SlideOffset (m_cfi_data.GetU8(&offset) * code_align);
    [all...]
  /external/lldb/source/Plugins/ObjectFile/ELF/
ELFHeader.cpp 111 if (data.GetU8(offset, &e_ident, EI_NIDENT) == NULL)
337 if (data.GetU8(offset, &st_info, 2) == NULL)
347 if (data.GetU8(offset, &st_info, 2) == NULL)
ObjectFileELF.cpp 699 if (data.GetU8 (&offset, name, 4) == NULL)
704 if (data.GetU8 (&offset, &uuidbuf, notehdr.desc_len) == NULL)
    [all...]
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ThreadKDP.cpp 174 uint8_t reply_command = exc_reply_packet.GetU8(&offset);
CommunicationKDP.cpp 132 const uint8_t reply_command = reply_packet.GetU8 (&offset);
133 const uint8_t reply_sequence_id = reply_packet.GetU8 (&offset);
311 uint8_t reply_command = packet.GetU8(&offset);
321 request_ack_packet.PutHex8 (packet.GetU8(&offset));
852 const uint8_t first_packet_byte = packet.GetU8 (&offset);
853 const uint8_t sequence_id = packet.GetU8 (&offset);
    [all...]
  /external/lldb/include/lldb/Core/
DataExtractor.h     [all...]
  /external/lldb/source/Expression/
DWARFExpression.cpp 292 const uint8_t op = m_data.GetU8(&offset);
320 case DW_OP_const1u: s->Printf("DW_OP_const1u(0x%2.2x) ", m_data.GetU8(&offset)); break; // 0x08 1 1-byte constant
321 case DW_OP_const1s: s->Printf("DW_OP_const1s(0x%2.2x) ", m_data.GetU8(&offset)); break; // 0x09 1 1-byte constant
333 case DW_OP_pick: s->Printf("DW_OP_pick(0x%2.2x) ", m_data.GetU8(&offset)); break; // 0x15 1 1-byte stack index
562 s->Printf("DW_OP_deref_size(0x%2.2x)", m_data.GetU8(&offset));
565 s->Printf("DW_OP_xderef_size(0x%2.2x)", m_data.GetU8(&offset));
611 // uint8_t float_length = m_data.GetU8(&offset);
620 // s->Printf("DW_OP_APPLE_scalar_cast(%s)", Scalar::GetValueTypeAsCString ((Scalar::Type)m_data.GetU8(&offset)));
    [all...]
IRMemoryMap.cpp 660 case 1: scalar = extractor.GetU8(&offset); break;
  /external/lldb/source/Core/
DataExtractor.cpp 368 DataExtractor::GetU8 (offset_t *offset_ptr) const
386 DataExtractor::GetU8 (offset_t *offset_ptr, void *dst, uint32_t count) const
626 case 1: return GetU8 (offset_ptr); break;
651 case 1: return GetU8 (offset_ptr); break;
683 case 1: return (int8_t)GetU8 (offset_ptr); break;
    [all...]
Scalar.cpp     [all...]
  /external/lldb/source/Plugins/ObjectFile/PECOFF/
ObjectFilePECOFF.cpp 386 m_coff_header_opt.major_linker_version = m_data.GetU8 (offset_ptr);
387 m_coff_header_opt.minor_linker_version = m_data.GetU8 (offset_ptr);
577 symbol.storage = symtab_data.GetU8 (&offset);
578 symbol.naux = symtab_data.GetU8 (&offset);
    [all...]
  /external/lldb/source/API/
SBData.cpp 253 value = m_opaque_sp->GetU8(&offset);
477 ok = m_opaque_sp->GetU8(&offset, buf, size);
  /external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.cpp 142 m_opcode.SetOpcode8 (data.GetU8 (&data_offset));
310 const uint8_t uval8 = data.GetU8 (&offset);
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.cpp 757 m_dyld_all_image_infos.processDetachedFromSharedRegion = data.GetU8(&offset);
758 m_dyld_all_image_infos.libSystemInitialized = data.GetU8(&offset);
    [all...]
  /external/lldb/source/Plugins/ObjectFile/Mach-O/
ObjectFileMachO.cpp 1003 if (m_data.GetU8(&offset, (uint8_t*)load_cmd.segname, 16))
    [all...]

Completed in 6451 milliseconds