| /llvm-project-15.0.7/lldb/test/API/python_api/process/read-mem-cstring/ |
| H A D | TestReadMemCString.py | 46 empty_str = process.ReadCStringFromMemory(empty_str_addr, 2048, err) 50 one_letter_string = process.ReadCStringFromMemory(one_letter_str_addr, 2048, err) 54 invalid_memory_string = process.ReadCStringFromMemory(invalid_memory_str_addr, 2048, err)
|
| /llvm-project-15.0.7/lldb/unittests/Host/ |
| H A D | NativeProcessProtocolTest.cpp | 101 TEST(NativeProcessProtocolTest, ReadCStringFromMemory) { in TEST() argument 111 EXPECT_THAT_EXPECTED(Process.ReadCStringFromMemory( in TEST() 127 EXPECT_THAT_EXPECTED(Process.ReadCStringFromMemory( in TEST() 144 EXPECT_THAT_EXPECTED(Process.ReadCStringFromMemory(string_start, &string[0], in TEST()
|
| /llvm-project-15.0.7/lldb/scripts/android/ |
| H A D | host_art_bt.py | 57 art_method_name = process.ReadCStringFromMemory( 112 function = process.ReadCStringFromMemory( 175 function = process.ReadCStringFromMemory( 190 file_name = process.ReadCStringFromMemory(
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCClassDescriptorV2.cpp | 185 process->ReadCStringFromMemory(m_name_ptr, (char *)name_buf.GetBytes(), in Read() 309 process->ReadCStringFromMemory(m_name_ptr, m_name, error); in Read() 314 process->ReadCStringFromMemory(m_types_ptr, m_types, error); in Read() 364 process->ReadCStringFromMemory(m_name_ptr, m_name, error); in Read() 369 process->ReadCStringFromMemory(m_type_ptr, m_type, error); in Read()
|
| H A D | AppleObjCRuntimeV1.cpp | 227 size_t count = process_sp->ReadCStringFromMemory( in Initialize()
|
| /llvm-project-15.0.7/lldb/test/API/linux/aarch64/non_address_bit_memory_access/ |
| H A D | TestAArch64LinuxNonAddressBitMemoryAccess.py | 98 c_string = self.process().ReadCStringFromMemory(buf_with_non_address, 5, error) 230 check_reads(addrs, self.process().ReadCStringFromMemory, 5, "LLDB")
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_process.py | 42 obj.ReadCStringFromMemory(0x0, 128, error)
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSDKernel/ |
| H A D | ProcessFreeBSDKernel.cpp | 196 ReadCStringFromMemory(proc + offset_p_comm, comm, sizeof(comm), error); in DoUpdateThreadList() 213 ReadCStringFromMemory(td + offset_td_name, thread_name, in DoUpdateThreadList()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBProcess.i | 278 print('error: ', error)") ReadCStringFromMemory; 281 ReadCStringFromMemory (addr_t addr, void *char_buf, size_t size, lldb::SBError &error);
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | Address.cpp | 190 static size_t ReadCStringFromMemory(ExecutionContextScope *exe_scope, in ReadCStringFromMemory() function 533 ReadCStringFromMemory(exe_scope, *this, s); in Dump() 545 ReadCStringFromMemory(exe_scope, so_addr, s); in Dump() 577 ReadCStringFromMemory(exe_scope, so_addr, s); in Dump()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/process/ |
| H A D | TestProcessAPI.py | 69 cstring = process.ReadCStringFromMemory( 90 cstring = process.ReadCStringFromMemory(
|
| /llvm-project-15.0.7/lldb/source/DataFormatters/ |
| H A D | TypeFormat.cpp | 83 if (target_sp->ReadCStringFromMemory( in FormatObject()
|
| H A D | StringPrinter.cpp | 465 target_sp->ReadCStringFromMemory(options.GetLocation(), buffer, in ReadEncodedBufferAndDumpToStream()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/FreeBSDKernel/tools/ |
| H A D | lldb-minimize-processes.patch | 24 ReadCStringFromMemory(proc + offset_p_comm, comm, sizeof(comm), error);
|
| /llvm-project-15.0.7/lldb/bindings/lua/ |
| H A D | lua-typemaps.swig | 86 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated 105 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
| H A D | InstrumentationRuntimeASan.cpp | 173 process_sp->ReadCStringFromMemory(description_ptr, description, error); in RetrieveReportData()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/POSIX/ |
| H A D | NativeProcessELF.cpp | 126 llvm::Expected<llvm::StringRef> string_or_error = ReadCStringFromMemory( in ReadSVR4LibraryInfo()
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | InstrumentationRuntimeMainThreadChecker.cpp | 105 target.ReadCStringFromMemory(apiname_ptr, apiName, read_error); in RetrieveReportData()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBProcess.h | 190 size_t ReadCStringFromMemory(addr_t addr, void *buf, size_t size,
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
| H A D | InstrumentationRuntimeUBSan.cpp | 101 process_sp->ReadCStringFromMemory(ptr, str, error); in RetrieveString()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 917 process->ReadCStringFromMemory(buffer_addr, name_string, utility_error); in DoLoadImage() 935 size_t num_chars = process->ReadCStringFromMemory(error_addr + addr_size, in DoLoadImage()
|
| /llvm-project-15.0.7/lldb/bindings/python/ |
| H A D | python-typemaps.swig | 105 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated 123 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 129 ReadCStringFromMemory(lldb::addr_t addr, char *buffer, size_t max_size,
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/ |
| H A D | PlatformDarwin.cpp | 943 process.ReadCStringFromMemory(annotations.message, message, error); in ExtractCrashInfoAnnotations() 960 process.ReadCStringFromMemory(annotations.message2, message2, error); in ExtractCrashInfoAnnotations()
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | Target.h | 1039 size_t ReadCStringFromMemory(const Address &addr, std::string &out_str, 1042 size_t ReadCStringFromMemory(const Address &addr, char *dst,
|