Home
last modified time | relevance | path

Searched refs:GetU32 (Results 1 – 25 of 36) sorted by relevance

12

/external/lldb/source/Plugins/Process/MacOSX-Kernel/
DCommunicationKDP.cpp323 request_ack_packet.PutHex32 (packet.GetU32(&offset)); in CheckForPacket()
449 m_session_key = reply_packet.GetU32 (&offset); in SendRequestReattach()
482 m_kdp_version_version = reply_packet.GetU32 (&offset); in SendRequestVersion()
483 m_kdp_version_feature = reply_packet.GetU32 (&offset); in SendRequestVersion()
619 m_kdp_hostinfo_cpu_mask = reply_packet.GetU32 (&offset); in SendRequestHostInfo()
620 m_kdp_hostinfo_cpu_type = reply_packet.GetU32 (&offset); in SendRequestHostInfo()
621 m_kdp_hostinfo_cpu_subtype = reply_packet.GetU32 (&offset); in SendRequestHostInfo()
696 uint32_t kdp_error = reply_packet.GetU32 (&offset); in SendRequestReadMemory()
743 uint32_t kdp_error = reply_packet.GetU32 (&offset); in SendRequestWriteMemory()
776 uint32_t kdp_error = reply_packet.GetU32 (&offset); in SendRawRequest()
[all …]
DThreadKDP.cpp178 const uint32_t count = exc_reply_packet.GetU32 (&offset); in SetStopInfoFrom_KDP_EXCEPTION()
183 const uint32_t exc_type = exc_reply_packet.GetU32 (&offset); in SetStopInfoFrom_KDP_EXCEPTION()
184 const uint32_t exc_code = exc_reply_packet.GetU32 (&offset); in SetStopInfoFrom_KDP_EXCEPTION()
185 const uint32_t exc_subcode = exc_reply_packet.GetU32 (&offset); in SetStopInfoFrom_KDP_EXCEPTION()
/external/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.cpp244 uint32_t pe_signature = m_data.GetU32 (&offset); in ParseHeader()
346 m_dos_header.e_lfanew = m_data.GetU32(&offset); // File address of new exe header in ParseDOSHeader()
366 m_coff_header.modtime = m_data.GetU32(offset_ptr); in ParseCOFFHeader()
367 m_coff_header.symoff = m_data.GetU32(offset_ptr); in ParseCOFFHeader()
368 m_coff_header.nsyms = m_data.GetU32(offset_ptr); in ParseCOFFHeader()
388 m_coff_header_opt.code_size = m_data.GetU32(offset_ptr); in ParseCOFFOptionalHeader()
389 m_coff_header_opt.data_size = m_data.GetU32(offset_ptr); in ParseCOFFOptionalHeader()
390 m_coff_header_opt.bss_size = m_data.GetU32(offset_ptr); in ParseCOFFOptionalHeader()
391 m_coff_header_opt.entry = m_data.GetU32(offset_ptr); in ParseCOFFOptionalHeader()
392 m_coff_header_opt.code_offset = m_data.GetU32(offset_ptr); in ParseCOFFOptionalHeader()
[all …]
/external/lldb/source/Plugins/ObjectFile/ELF/
DELFHeader.cpp123 if (data.GetU32(offset, &e_version, 1) == NULL) in Parse()
131 if (data.GetU32(offset, &e_flags, 1) == NULL) in Parse()
206 if (data.GetU32(offset, &sh_name, 2) == NULL) in Parse()
218 if (data.GetU32(offset, &sh_link, 2) == NULL) in Parse()
327 if (data.GetU32(offset, &st_name, 1) == NULL) in Parse()
377 if (data.GetU32(offset, &p_type, 1) == NULL) in Parse()
386 if (data.GetU32(offset, &p_flags, 1) == NULL) in Parse()
395 if (data.GetU32(offset, &p_flags, 1) == NULL) in Parse()
/external/lldb/source/Host/macosx/
DSymbols.cpp74 const uint32_t cputype = data.GetU32(&data_offset); // cpu specifier in SkinnyMachOFileContainsArchAndUUID()
75 const uint32_t cpusubtype = data.GetU32(&data_offset); // machine specifier in SkinnyMachOFileContainsArchAndUUID()
77 const uint32_t ncmds = data.GetU32(&data_offset); // number of load commands in SkinnyMachOFileContainsArchAndUUID()
78 const uint32_t sizeofcmds = data.GetU32(&data_offset); // the size of all the load commands in SkinnyMachOFileContainsArchAndUUID()
120 uint32_t cmd = data.GetU32(&data_offset); in SkinnyMachOFileContainsArchAndUUID()
121 uint32_t cmd_size = data.GetU32(&data_offset); in SkinnyMachOFileContainsArchAndUUID()
152 const uint32_t nfat_arch = data.GetU32(&data_offset); // number of structs that follow in UniversalMachOFileContainsArchAndUUID()
162 cpu_type_t arch_cputype = data.GetU32(&data_offset); // cpu specifier (int) in UniversalMachOFileContainsArchAndUUID()
163 … cpu_subtype_t arch_cpusubtype = data.GetU32(&data_offset); // machine specifier (int) in UniversalMachOFileContainsArchAndUUID()
164 …uint32_t arch_offset = data.GetU32(&data_offset); // file offset to this object … in UniversalMachOFileContainsArchAndUUID()
[all …]
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugPubnamesSet.cpp87 m_header.length = data.GetU32(offset_ptr); in Extract()
89 m_header.die_offset = data.GetU32(offset_ptr); in Extract()
90 m_header.die_length = data.GetU32(offset_ptr); in Extract()
95 pubnameDesc.offset = data.GetU32(offset_ptr); in Extract()
DHashedNameToDIE.h355 die_base_offset = data.GetU32 (&offset); in Read()
357 const uint32_t atom_count = data.GetU32 (&offset); in Read()
361 while (data.GetU32(&offset)) in Read()
616 const uint32_t count = m_data.GetU32 (&offset); in ReadHashData()
636 pair.key = m_data.GetU32 (hash_data_offset_ptr); in GetHashDataForName()
653 const uint32_t count = m_data.GetU32 (hash_data_offset_ptr); in GetHashDataForName()
714 pair.key = m_data.GetU32 (hash_data_offset_ptr); in AppendHashDataForRegularExpression()
726 const uint32_t count = m_data.GetU32 (hash_data_offset_ptr); in AppendHashDataForRegularExpression()
826 KeyType key = m_data.GetU32 (&hash_data_offset); in AppendAllDIEsInRange()
832 const uint32_t count = m_data.GetU32 (&hash_data_offset); in AppendAllDIEsInRange()
DDWARFFormValue.cpp130 …case DW_FORM_block4: m_value.value.uval = data.GetU32(offset_ptr); is_block = true; br… in ExtractValue()
132 …case DW_FORM_data4: m_value.value.uval = data.GetU32(offset_ptr); br… in ExtractValue()
145 …case DW_FORM_strp: m_value.value.uval = data.GetU32(offset_ptr); br… in ExtractValue()
152 …m_value.value.uval = data.GetU32(offset_ptr); // 4 for DWARF32, 8 for DWARF64, but we don't suppor… in ExtractValue()
156 …case DW_FORM_ref4: m_value.value.uval = data.GetU32(offset_ptr); br… in ExtractValue()
164 …case DW_FORM_sec_offset: m_value.value.uval = data.GetU32(offset_ptr); br… in ExtractValue()
202 …case DW_FORM_block4: { dw_uleb128_t size = debug_info_data.GetU32(offset_ptr); *offset_ptr += … in SkipValue()
DDWARFLocationDescription.cpp161 case -4: sint = (int32_t) data.GetU32(offset_ptr); s.Printf("%+" PRIi64, sint); break; in print_dwarf_exp_op()
166 …case 4: uint = data.GetU32(offset_ptr); s.Printf("0x%8.8" PRIx64, uint); break; in print_dwarf_exp_op()
DDWARFDebugArangeSet.cpp186 m_header.length = data.GetU32(offset_ptr); in Extract()
188 m_header.cu_offset = data.GetU32(offset_ptr); in Extract()
DDWARFCompileUnit.cpp82 m_length = debug_info.GetU32(offset_ptr); in Extract()
84 abbr_offset = debug_info.GetU32(offset_ptr); in Extract()
115 m_length = debug_info_data.GetU32(&offset); in Extract()
117 bool abbrevs_OK = debug_info_data.GetU32(&offset) == abbrevs->GetOffset(); in Extract()
/external/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp81 int flavor = data.GetU32 (&offset); in SetRegisterDataFrom_LC_THREAD()
87 uint32_t count = data.GetU32 (&offset); in SetRegisterDataFrom_LC_THREAD()
104 exc.trapno = data.GetU32(&offset); in SetRegisterDataFrom_LC_THREAD()
105 exc.err = data.GetU32(&offset); in SetRegisterDataFrom_LC_THREAD()
189 int flavor = data.GetU32 (&offset); in SetRegisterDataFrom_LC_THREAD()
195 uint32_t count = data.GetU32 (&offset); in SetRegisterDataFrom_LC_THREAD()
200 (&gpr.eax)[i] = data.GetU32(&offset); in SetRegisterDataFrom_LC_THREAD()
212 exc.trapno = data.GetU32(&offset); in SetRegisterDataFrom_LC_THREAD()
213 exc.err = data.GetU32(&offset); in SetRegisterDataFrom_LC_THREAD()
214 exc.faultvaddr = data.GetU32(&offset); in SetRegisterDataFrom_LC_THREAD()
[all …]
/external/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
DObjectContainerUniversalMachO.cpp87 uint32_t magic = data.GetU32(&offset); in MagicBytesMatch()
133 header.magic = data.GetU32(&offset); in ParseHeader()
141 header.nfat_arch = data.GetU32(&offset); in ParseHeader()
151 if (data.GetU32(&offset, &arch, sizeof(fat_arch)/sizeof(uint32_t))) in ParseHeader()
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOSXDYLD.cpp289 uint32_t magic = data.GetU32 (&offset); in LocateDYLD()
724 m_dyld_all_image_infos.version = data.GetU32(&offset); in ReadAllImageInfosStructure()
739 m_dyld_all_image_infos.version = data.GetU32(&offset); in ReadAllImageInfosStructure()
753 m_dyld_all_image_infos.version = data.GetU32(&offset); in ReadAllImageInfosStructure()
754 m_dyld_all_image_infos.dylib_info_count = data.GetU32(&offset); in ReadAllImageInfosStructure()
1157 header->magic = data.GetU32(&offset); in ReadMachHeader()
1179 …if (data.GetU32(&offset, &header->cputype, (sizeof(llvm::MachO::mach_header)/sizeof(uint32_t)) - 1… in ReadMachHeader()
1228 load_cmd.cmd = data.GetU32 (&offset); in ParseLoadCommands()
1229 load_cmd.cmdsize = data.GetU32 (&offset); in ParseLoadCommands()
1237 segment.vmaddr = data.GetU32 (&offset); in ParseLoadCommands()
[all …]
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntimeV1.cpp398 const uint32_t count = data.GetU32(&offset); in UpdateISAToDescriptorMapIfNeeded()
399 const uint32_t num_buckets = data.GetU32(&offset); in UpdateISAToDescriptorMapIfNeeded()
414 const uint32_t bucket_isa_count = data.GetU32 (&offset); in UpdateISAToDescriptorMapIfNeeded()
415 const lldb::addr_t bucket_data = data.GetU32 (&offset); in UpdateISAToDescriptorMapIfNeeded()
DAppleObjCTrampolineHandler.cpp301 const size_t num_descriptors = data.GetU32(&offset); in SetUpRegion()
350 uint32_t voffset = desc_extractor.GetU32 (&offset); in SetUpRegion()
351 uint32_t flags = desc_extractor.GetU32 (&offset); in SetUpRegion()
/external/lldb/source/Symbol/
DDWARFCallFrameInfo.cpp149 const uint32_t length = m_cfi_data.GetU32(&offset); in ParseCIE()
150 const dw_offset_t cie_id = m_cfi_data.GetU32(&offset); in ParseCIE()
340 uint32_t len = m_cfi_data.GetU32 (&offset); in GetFDEIndex()
342 dw_offset_t cie_id = m_cfi_data.GetU32 (&offset); in GetFDEIndex()
390 uint32_t length = m_cfi_data.GetU32 (&offset); in FDEToUnwindPlan()
391 dw_offset_t cie_offset = m_cfi_data.GetU32 (&offset); in FDEToUnwindPlan()
561 row->SlideOffset (m_cfi_data.GetU32(&offset) * code_align); in FDEToUnwindPlan()
/external/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServer.cpp308 lldb::pid_t pid = packet.GetU32 (LLDB_INVALID_PROCESS_ID); in Handle_qProcessInfoPID()
441 uint32_t uid = packet.GetU32 (UINT32_MAX); in Handle_qUserName()
461 uint32_t gid = packet.GetU32 (UINT32_MAX); in Handle_qGroupName()
582 const uint32_t arg_len = packet.GetU32(UINT32_MAX); in Handle_A()
594 const uint32_t arg_idx = packet.GetU32(UINT32_MAX); in Handle_A()
764 if (packet.GetU32(0)) in Handle_QSetDisableASLR()
/external/lldb/include/lldb/Core/
DMappedHash.h129 magic = data.GetU32 (&offset); in Read()
163 bucket_count = data.GetU32 (&offset); in Read()
164 hashes_count = data.GetU32 (&offset); in Read()
165 header_data_len = data.GetU32 (&offset); in Read()
DDataExtractor.h946 GetU32 (lldb::offset_t *offset_ptr) const;
974 GetU32 (lldb::offset_t *offset_ptr, void *dst, uint32_t count) const;
/external/lldb/source/Plugins/Process/elf-core/
DProcessElfCore.cpp403 if (data.GetU32(offset, &n_namesz, 3) == NULL) in Parse()
445 int pr_version = data.GetU32(&offset); in ParseFreeBSDPrStatus()
457 thread_data->signo = data.GetU32(&offset); // pr_cursig in ParseFreeBSDPrStatus()
/external/lldb/source/Utility/
DStringExtractor.h105 GetU32 (uint32_t fail_value, int base = 0);
/external/lldb/source/Core/
DDataExtractor.cpp502 DataExtractor::GetU32 (offset_t *offset_ptr) const in GetU32() function in DataExtractor
526 DataExtractor::GetU32 (offset_t *offset_ptr, void *void_dst, uint32_t count) const in GetU32() function in DataExtractor
628 case 4: return GetU32(offset_ptr); break; in GetMaxU32()
653 case 4: return GetU32(offset_ptr); break; in GetMaxU64()
685 case 4: return (int32_t)GetU32(offset_ptr); break; in GetMaxS64()
917 case DW_EH_PE_udata4 : addressValue = GetU32(offset_ptr); break; in GetGNUEHPointer()
921 case DW_EH_PE_sdata4 : addressValue = (int32_t)GetU32(offset_ptr); break; in GetGNUEHPointer()
1866 s->Printf("U+0x%8.8x", GetU32 (&offset)); in Dump()
2062 … case TypeUInt32: sstr.Printf (format ? format : " %8.8x", GetU32(&offset)); break; in PutToLog()
/external/lldb/source/Plugins/Disassembler/llvm/
DDisassemblerLLVMC.cpp152 m_opcode.SetOpcode32 (data.GetU32 (&data_offset)); in Decode()
193 m_opcode.SetOpcode32 (data.GetU32(&data_offset)); in Decode()
326 const uint32_t uval32 = data.GetU32(&offset); in CalculateMnemonicOperandsAndComment()
/external/lldb/source/Expression/
DDWARFExpression.cpp324 …case DW_OP_const4u: s->Printf("DW_OP_const4u(0x%8.8x) ", m_data.GetU32(&offset)); break; // 0… in DumpLocation()
325 …case DW_OP_const4s: s->Printf("DW_OP_const4s(0x%8.8x) ", m_data.GetU32(&offset)); break; // 0… in DumpLocation()
573 s->Printf("DW_OP_call4(0x%8.8x)", m_data.GetU32(&offset)); in DumpLocation()
1536 … case 4: stack.back().GetScalar() = addr_data.GetU32(&addr_data_offset); break; in Evaluate()
1632 …case DW_OP_const4u : stack.push_back(Scalar((uint32_t)opcodes.GetU32 (&offset))); b… in Evaluate()
1633 …case DW_OP_const4s : stack.push_back(Scalar(( int32_t)opcodes.GetU32 (&offset))); b… in Evaluate()

12