/external/llvm-project/lldb/unittests/Host/ |
D | NativeProcessProtocolTest.cpp | 26 EXPECT_CALL(Process, ReadMemory(0x47, 1)) in TEST() 29 EXPECT_CALL(Process, ReadMemory(0x47, 1)).WillOnce(Return(ByMove(Trap))); in TEST() 38 EXPECT_CALL(Process, ReadMemory(0x47, 1)) in TEST() 51 EXPECT_CALL(Process, ReadMemory(0x47, 1)) in TEST() 66 EXPECT_CALL(Process, ReadMemory(0x47, 1)) in TEST() 69 EXPECT_CALL(Process, ReadMemory(0x47, 1)) in TEST() 81 EXPECT_CALL(Process, ReadMemory(_, _)) in TEST() 106 EXPECT_CALL(Process, ReadMemory(_, _)) in TEST() 122 EXPECT_CALL(Process, ReadMemory(_, _)) in TEST() 139 EXPECT_CALL(Process, ReadMemory(_, _)) in TEST()
|
/external/llvm-project/lldb/examples/summaries/ |
D | unicode_strings.py | 24 string_data = value.process.ReadMemory(pointer, length, error) 37 string_data = value.process.ReadMemory(pointer, length, error) 51 string_data = value.process.ReadMemory(pointer, length, error)
|
/external/llvm-project/lldb/source/Plugins/Process/POSIX/ |
D | NativeProcessELF.cpp | 70 auto error = ReadMemory(phdr_addr + i * phdr_entry_size, &phdr_entry, in GetELFImageInfoAddress() 95 auto error = ReadMemory(dynamic_section_addr + i * sizeof(dynamic_entry), in GetELFImageInfoAddress() 121 ReadMemory(link_map_addr, &link_map, sizeof(link_map), bytes_read); in ReadSVR4LibraryInfo() 152 ReadMemory(info_address, &address, GetAddressByteSize(), bytes_read); in GetLoadedSVR4Libraries() 160 status = ReadMemory(address + GetAddressByteSize(), &link_map, in GetLoadedSVR4Libraries()
|
/external/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/ |
D | UnwindAssembly-x86.cpp | 57 if (process_sp->GetTarget().ReadMemory( in GetNonCallSiteUnwindPlanFromAssembly() 159 if (process_sp->GetTarget().ReadMemory( in AugmentUnwindPlanFromCallSite() 190 if (target.ReadMemory(func.GetBaseAddress(), prefer_file_cache, in GetFastUnwindPlan() 226 if (target->ReadMemory(func.GetBaseAddress(), prefer_file_cache, in FirstNonPrologueInsn()
|
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
D | MachThread.cpp | 632 if (m_process->ReadMemory(tident.thread_handle, 8, &addr) == 8) { in GetPThreadT() 639 if (m_process->ReadMemory(tident.thread_handle, 4, &addr) == 4) { in GetPThreadT() 678 if (m_process->ReadMemory(pthread_t_value + in GetTSDAddressForThread() 688 if (m_process->ReadMemory(pthread_t_value + in GetTSDAddressForThread() 714 if (m_process->ReadMemory(tident.dispatch_qaddr, 8, &addr) == 8) { in GetDispatchQueueT() 720 if (m_process->ReadMemory(tident.dispatch_qaddr, 4, &addr) == 4) { in GetDispatchQueueT() 738 if (m_process->ReadMemory(tsd + (dti_qos_class_index * 8), 8, &pri) == in GetRequestedQoS() 744 if (m_process->ReadMemory(tsd + (dti_qos_class_index * 4), 4, &pri) == in GetRequestedQoS()
|
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleObjCClassDescriptorV2.cpp | 55 process->ReadMemory(addr, objc_class_buf.GetBytes(), objc_class_size, error); in Read() 95 process->ReadMemory(addr, buffer.GetBytes(), size, error); in Read() 115 process->ReadMemory(m_ro_ptr ^ 1, buffer.GetBytes(), ptr_size, error); in Read() 147 process->ReadMemory(addr, buffer.GetBytes(), size, error); in Read() 234 process->ReadMemory(addr, buffer.GetBytes(), size, error); in Read() 262 process->ReadMemory(addr, buffer.GetBytes(), size, error); in Read() 309 process->ReadMemory(addr, buffer.GetBytes(), size, error); in Read() 332 process->ReadMemory(addr, buffer.GetBytes(), size, error); in Read()
|
/external/llvm-project/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/ |
D | TestLinuxCoreThreads.py | 52 bytes_read = process.ReadMemory(0x8048000, 4, mem_err) 54 bytes_read = process.ReadMemory(0x400000, 4, mem_err)
|
/external/llvm-project/lldb/source/Plugins/Language/ObjC/ |
D | CFBasicHash.cpp | 52 m_exe_ctx_ref.GetProcessSP()->ReadMemory(addr, m_ht.get(), in UpdateFor() 64 m_exe_ctx_ref.GetProcessSP()->ReadMemory(ptr_offset, m_ht->pointers, size, in UpdateFor()
|
D | NSArray.cpp | 169 process.ReadMemory(start_of_descriptor, &descriptor, in __NSArrayMSize_Impl() 506 process_sp->ReadMemory(data_location, m_data_32, sizeof(D32), in Update() 510 process_sp->ReadMemory(data_location, m_data_64, sizeof(D64), in Update() 650 process_sp->ReadMemory(data_location, m_data_32, sizeof(D32), in Update() 654 process_sp->ReadMemory(data_location, m_data_64, sizeof(D64), in Update()
|
D | NSSet.cpp | 211 process.ReadMemory(start_of_descriptor, &descriptor, sizeof(descriptor), in __NSSetMSize_Impl() 461 process_sp->ReadMemory(data_location, m_data_32, sizeof(DataDescriptor_32), in Update() 465 process_sp->ReadMemory(data_location, m_data_64, sizeof(DataDescriptor_64), in Update() 745 process_sp->ReadMemory(data_location, m_data_32, sizeof(D32), in Update() 749 process_sp->ReadMemory(data_location, m_data_64, sizeof(D64), in Update()
|
/external/libtextclassifier/abseil-cpp/absl/container/ |
D | fixed_array_exception_safety_test.cc | 152 testing::AssertionResult ReadMemory(FixedArrT* fixed_arr) { in ReadMemory() function 162 .WithContracts(ReadMemory<FixedArr>) in TEST() 179 .WithContracts(ReadMemory<FixedArrWithAlloc>) in TEST()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/ |
D | fixed_array_exception_safety_test.cc | 152 testing::AssertionResult ReadMemory(FixedArrT* fixed_arr) { in ReadMemory() function 162 .WithContracts(ReadMemory<FixedArr>) in TEST() 179 .WithContracts(ReadMemory<FixedArrWithAlloc>) in TEST()
|
/external/llvm-project/lldb/unittests/TestingSupport/Host/ |
D | NativeProcessTestUtils.h | 64 Status ReadMemory(addr_t Addr, void *Buf, size_t Size, in ReadMemory() function 66 auto ExpectedMemory = this->ReadMemory(Addr, Size); in ReadMemory() 89 MOCK_METHOD2(ReadMemory,
|
/external/angle/third_party/abseil-cpp/absl/container/ |
D | fixed_array_exception_safety_test.cc | 152 testing::AssertionResult ReadMemory(FixedArrT* fixed_arr) { in ReadMemory() function 162 .WithContracts(ReadMemory<FixedArr>) in TEST() 179 .WithContracts(ReadMemory<FixedArrWithAlloc>) in TEST()
|
/external/openscreen/third_party/abseil/src/absl/container/ |
D | fixed_array_exception_safety_test.cc | 152 testing::AssertionResult ReadMemory(FixedArrT* fixed_arr) { in ReadMemory() function 162 .WithContracts(ReadMemory<FixedArr>) in TEST() 179 .WithContracts(ReadMemory<FixedArrWithAlloc>) in TEST()
|
/external/abseil-cpp/absl/container/ |
D | fixed_array_exception_safety_test.cc | 152 testing::AssertionResult ReadMemory(FixedArrT* fixed_arr) { in ReadMemory() function 163 .WithContracts(ReadMemory<FixedArr>) in TEST() 180 .WithContracts(ReadMemory<FixedArrWithAlloc>) in TEST()
|
/external/webrtc/third_party/abseil-cpp/absl/container/ |
D | fixed_array_exception_safety_test.cc | 152 testing::AssertionResult ReadMemory(FixedArrT* fixed_arr) { in ReadMemory() function 163 .WithContracts(ReadMemory<FixedArr>) in TEST() 180 .WithContracts(ReadMemory<FixedArrWithAlloc>) in TEST()
|
/external/llvm-project/lldb/source/Expression/ |
D | IRMemoryMap.cpp | 624 void IRMemoryMap::ReadMemory(uint8_t *bytes, lldb::addr_t process_address, in ReadMemory() function in IRMemoryMap 634 process_sp->ReadMemory(process_address, bytes, size, error); in ReadMemory() 642 target_sp->ReadMemory(absolute_address, false, bytes, size, error); in ReadMemory() 686 process_sp->ReadMemory(process_address, bytes, size, error); in ReadMemory() 701 process_sp->ReadMemory(process_address, bytes, size, error); in ReadMemory() 727 ReadMemory(buf.GetBytes(), process_address, size, error); in ReadScalarFromMemory() 819 process_sp->ReadMemory(allocation.m_process_start, in GetMemoryData()
|
D | Materializer.cpp | 292 map.ReadMemory(m_persistent_variable_sp->GetValueBytes(), mem, in Dematerialize() 352 map.ReadMemory(data.GetBytes(), load_addr, m_size, err); in DumpToLog() 377 map.ReadMemory(data.GetBytes(), target_address, in DumpToLog() 692 map.ReadMemory(data.GetBytes(), load_addr, m_size, err); in DumpToLog() 722 map.ReadMemory(data.GetBytes(), m_temporary_allocation, in DumpToLog() 928 map.ReadMemory(pvar_data, address, pvar_byte_size, read_error); in Dematerialize() 968 map.ReadMemory(data.GetBytes(), load_addr, m_size, err); in DumpToLog() 998 map.ReadMemory(data.GetBytes(), m_temporary_allocation, in DumpToLog() 1137 map.ReadMemory(data.GetBytes(), load_addr, m_size, err); in DumpToLog() 1311 map.ReadMemory(data.GetBytes(), load_addr, m_size, err); in DumpToLog()
|
/external/llvm-project/lldb/source/Host/common/ |
D | NativeProcessProtocol.cpp | 396 ReadMemory(addr, curr_break_op.data(), curr_break_op.size(), bytes_read); in RemoveSoftwareBreakpoint() 424 error = ReadMemory(addr, verify_opcode.data(), verify_opcode.size(), in RemoveSoftwareBreakpoint() 452 Status error = ReadMemory(addr, saved_opcode_bytes.data(), in EnableSoftwareBreakpoint() 489 error = ReadMemory(addr, verify_bp_opcode_bytes.data(), in EnableSoftwareBreakpoint() 641 Status error = ReadMemory(addr, buf, size, bytes_read); in ReadMemoryWithoutTrap() 684 status = ReadMemory(curr_addr, static_cast<void *>(curr_buffer), in ReadCStringFromMemory()
|
/external/llvm-project/lldb/source/Plugins/SystemRuntime/MacOSX/ |
D | SystemRuntimeMacOSX.cpp | 148 m_process->ReadMemory(label_addr, &dispatch_queue_name[0], in GetQueueNameFromThreadQAddress() 309 if (m_process->ReadMemory(m_dispatch_queue_offsets_addr, memory_buffer, in ReadLibdispatchOffsets() 356 if (m_process->ReadMemory(m_libpthread_layout_offsets_addr, memory_buffer, in ReadLibpthreadOffsets() 483 if (m_process->ReadMemory(ret.item_buffer_ptr, data.GetBytes(), in GetExtendedBacktraceThread() 524 if (m_process->ReadMemory(ret.item_buffer_ptr, data.GetBytes(), in GetExtendedBacktraceFromItemRef() 766 if (m_process->ReadMemory( in GetPendingItemRefsForQueue() 857 if (m_process->ReadMemory(ret.item_buffer_ptr, data.GetBytes(), in CompleteQueueItem() 884 if (m_process->ReadMemory(queues_buffer, data.GetBytes(), queues_buffer_size, in PopulateQueuesUsingLibBTR()
|
/external/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
D | UnwindAssemblyInstEmulation.h | 74 m_inst_emulator_up->SetCallbacks(ReadMemory, WriteMemory, ReadRegister, in UnwindAssemblyInstEmulation() 80 ReadMemory(lldb_private::EmulateInstruction *instruction, void *baton,
|
/external/llvm-project/lldb/unittests/Process/POSIX/ |
D | NativeProcessELFTest.cpp | 101 EXPECT_CALL(process, ReadMemory(_, _)) in TEST() 148 EXPECT_CALL(process, ReadMemory(_, _)) in TEST()
|
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
D | DynamicLoaderMacOSXDYLD.cpp | 195 if (m_process->ReadMemory(shlib_addr, buf, 4, error) == 4) { in DoInitialImageFetch() 453 if (m_process->ReadMemory(m_dyld_all_image_infos_addr, buf, 4, error) == in ReadAllImageInfosStructure() 479 m_process->ReadMemory(m_dyld_all_image_infos_addr, buf, count, error); in ReadAllImageInfosStructure() 665 const size_t bytes_read = m_process->ReadMemory( in ReadImageInfos() 766 size_t bytes_read = m_process->ReadMemory(addr, header_bytes.GetBytes(), in ReadMachHeader() 808 m_process->ReadMemory(load_cmd_addr, load_cmd_data_sp->GetBytes(), in ReadMachHeader() 1088 if (m_process->ReadMemory(sharedCacheUUID_address, shared_cache_uuid, in GetSharedCacheInformation()
|
/external/llvm-project/lldb/test/API/python_api/process/ |
D | TestProcessAPI.py | 57 content = process.ReadMemory( 173 content = process.ReadMemory(location, 1, error) 265 content = process.ReadMemory(location, byteSize, error)
|