Searched refs:GetBytes (Results 26 - 50 of 90) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DRegisterContextPOSIXProcessMonitor_mips64.cpp164 uint8_t *dst = data_sp->GetBytes();
178 uint8_t *src = data_sp->GetBytes();
H A DRegisterContextPOSIXProcessMonitor_powerpc.cpp174 uint8_t *dst = data_sp->GetBytes();
189 uint8_t *src = data_sp->GetBytes();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DEvent.cpp138 const void *EventDataBytes::GetBytes() const { function in class:EventDataBytes
161 return e->GetBytes();
H A DDataEncoder.cpp82 m_start = data_sp->GetBytes() + data_offset;
H A DRegisterValue.cpp35 return data.SetData(GetBytes(), GetByteSize(), GetByteOrder()) > 0;
719 const void *RegisterValue::GetBytes() const { function in class:RegisterValue
731 m_scalar.GetBytes(buffer.bytes);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp485 return (const char *)m_data_sp->GetBytes() + line_offset;
503 (const char *)m_data_sp->GetBytes() + start_offset;
586 const uint8_t *cstr = m_data_sp->GetBytes() + start_line_offset;
640 const char *start = (char *)m_data_sp->GetBytes();
690 buffer.assign((char *)m_data_sp->GetBytes() + start_offset,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp663 if (data_sp->GetBytes() == nullptr) {
673 bytes_read = target->ReadMemory(address, false, data_sp->GetBytes(),
705 if (data_sp->GetBytes() == nullptr) {
713 uint8_t *data_ptr = data_sp->GetBytes();
752 std::make_shared<DataBufferHeap>(data_sp->GetBytes(), bytes_read + 1);
783 outfile_stream_up->Write(data_sp->GetBytes(), bytes_read);
1114 found_location = FastSearch(found_location, high_addr, buffer.GetBytes(),
1130 dumpbuffer.GetBytes(), dumpbuffer.GetByteSize(), error);
1132 DataExtractor data(dumpbuffer.GetBytes(), dumpbuffer.GetByteSize(),
1362 process->WriteMemory(addr, data_sp->GetBytes(), lengt
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSDictionary.cpp677 uint64_t *data_ptr = (uint64_t *)buffer_sp->GetBytes();
681 uint32_t *data_ptr = (uint32_t *)buffer_sp->GetBytes();
807 uint32_t *data_ptr = reinterpret_cast<uint32_t *>(buffer_sp->GetBytes());
812 uint64_t *data_ptr = reinterpret_cast<uint64_t *>(buffer_sp->GetBytes());
888 uint64_t *data_ptr = (uint64_t *)buffer_sp->GetBytes();
892 uint32_t *data_ptr = (uint32_t *)buffer_sp->GetBytes();
1054 uint64_t *data_ptr = (uint64_t *)buffer_sp->GetBytes();
1058 uint32_t *data_ptr = (uint32_t *)buffer_sp->GetBytes();
1211 uint64_t *data_ptr = (uint64_t *)buffer_sp->GetBytes();
1215 uint32_t *data_ptr = (uint32_t *)buffer_sp->GetBytes();
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips64.cpp875 0, 8, data_sp->GetBytes(), *byte_size - 8, target_byte_order);
879 0, 8, data_sp->GetBytes() + 8, *byte_size - 8,
884 0, 8, data_sp->GetBytes() + 8, *byte_size - 8,
889 0, 8, data_sp->GetBytes(), *byte_size - 8, target_byte_order);
1013 data_sp->GetBytes() + (field_bit_offset / 8), *field_byte_width,
1095 r2_info, data_sp->GetBytes(), r2_info->byte_size, target_byte_order,
1104 r3_info, data_sp->GetBytes() + r2_info->byte_size,
H A DABISysV_mips.cpp921 offset, 4, data_sp->GetBytes(), 4, target_byte_order);
925 offset, 4, data_sp->GetBytes() + 4, 4, target_byte_order);
929 offset, 4, data_sp->GetBytes() + 4, 4, target_byte_order);
933 offset, 4, data_sp->GetBytes(), 4, target_byte_order);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp730 if (!vr_val[i].GetAsMemoryData(vr[i], vr_data->GetBytes() + i * vr_size,
745 memcpy(m_data_up->GetBytes(), vr_data->GetBytes() + offs, m_byte_size);
759 size_t rc = m_process_sp->ReadMemory(addr, m_data_up->GetBytes(),
797 m_data_up->GetBytes() + m_dst_offs, *elem_size, m_byte_order,
882 if (!ExtractFromRegs(m_src_offs, n, m_data_up->GetBytes() + m_dst_offs))
892 if (!ExtractFromRegs(m_src_offs, size, m_data_up->GetBytes() + m_dst_offs))
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDarwin_i386.cpp788 ::memcpy(fpu.stmm[reg - fpu_stmm0].bytes, value.GetBytes(),
802 ::memcpy(fpu.xmm[reg - fpu_xmm0].bytes, value.GetBytes(),
828 uint8_t *dst = data_sp->GetBytes();
844 const uint8_t *src = data_sp->GetBytes();
H A DRegisterContextDarwin_x86_64.cpp846 ::memcpy(fpu.stmm[reg - fpu_stmm0].bytes, value.GetBytes(),
866 ::memcpy(fpu.xmm[reg - fpu_xmm0].bytes, value.GetBytes(),
892 uint8_t *dst = data_sp->GetBytes();
908 const uint8_t *src = data_sp->GetBytes();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DRegisterContextMinidump_x86_64.cpp55 uint8_t *result_base = result_context_buf->GetBytes();
/freebsd-13-stable/contrib/bearssl/T0/
H A DConstData.cs92 byte[] sd = Encoding.UTF8.GetBytes(s);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp219 if (!cast_scalar.GetAsMemoryData(buf.GetBytes(), buf.GetByteSize(),
225 m_execution_unit.WriteMemory(process_address, buf.GetBytes(),
355 if (!resolved_scalar.GetAsMemoryData(buf.GetBytes(), buf.GetByteSize(),
361 m_execution_unit.WriteMemory(process_address, buf.GetBytes(),
394 m_execution_unit.ReadMemory(buf.GetBytes(), addr, length, read_error);
403 ss.Printf("%02hhx - ", buf.GetBytes()[i]);
405 ss.Printf("%02hhx ", buf.GetBytes()[i]);
1229 execution_unit.ReadMemory(buffer.GetBytes(), R, buffer.GetByteSize(),
1239 execution_unit.WriteMemory(D, buffer.GetBytes(), buffer.GetByteSize(),
1308 execution_unit.ReadMemory(buffer.GetBytes(),
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBModuleSpec.cpp130 return m_opaque_up->GetUUID().GetBytes().data();
136 return m_opaque_up->GetUUID().GetBytes().size();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABISysV_i386.cpp531 if (reg_value.GetAsMemoryData(vec_reg, heap_data_up->GetBytes(),
559 if (reg_value.GetAsMemoryData(vec_reg, heap_data_up->GetBytes(),
563 vec_reg2, heap_data_up->GetBytes() + vec_reg->byte_size,
H A DABISysV_x86_64.cpp513 altivec_reg, heap_data_up->GetBytes(),
541 altivec_reg, heap_data_up->GetBytes(),
545 heap_data_up->GetBytes() + altivec_reg->byte_size,
819 data_sp->GetBytes() + field_byte_offset, field_byte_width,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeRegisterContextNetBSD_x86_64.cpp974 reg_value.GetBytes(), reg_value.GetByteSize());
985 reg_value.GetBytes(), reg_value.GetByteSize());
1004 reg_value.GetBytes(), reg_value.GetByteSize());
1030 ::memcpy(ymm.bytes, reg_value.GetBytes(), reg_value.GetByteSize());
1063 uint8_t *dst = data_sp->GetBytes();
1089 uint8_t *src = data_sp->GetBytes();
1092 "DataBuffer::GetBytes() returned a null "
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp131 size_t bytes_read = process->ReadMemory(from_addr, data.GetBytes(),
136 DataExtractor extractor(data.GetBytes(), data.GetByteSize(),
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp45 uint8_t *Ptr = data_sp->GetBytes() + sizeof(llvm::wasm::WasmMagic);
392 offset, data_up->GetBytes(), data_up->GetByteSize(), readmem_error);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEvent.h74 const void *GetBytes() const;
H A DRegisterValue.h244 const void *GetBytes() const;
/freebsd-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeFormat.cpp84 address, (char *)buffer_sp->GetBytes(), max_len, error) &&

Completed in 306 milliseconds

1234