Home
last modified time | relevance | path

Searched refs:ReadCStringFromMemory (Results 1 – 25 of 37) sorted by relevance

12

/external/llvm-project/lldb/test/API/python_api/process/read-mem-cstring/
DTestReadMemCString.py49 empty_str = process.ReadCStringFromMemory(empty_str_addr, 2048, err)
53 one_letter_string = process.ReadCStringFromMemory(one_letter_str_addr, 2048, err)
57 invalid_memory_string = process.ReadCStringFromMemory(invalid_memory_str_addr, 2048, err)
/external/llvm-project/lldb/unittests/Host/
DNativeProcessProtocolTest.cpp101 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()
/external/llvm-project/lldb/scripts/android/
Dhost_art_bt.py57 art_method_name = process.ReadCStringFromMemory(
112 function = process.ReadCStringFromMemory(
175 function = process.ReadCStringFromMemory(
190 file_name = process.ReadCStringFromMemory(
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCClassDescriptorV2.cpp174 process->ReadCStringFromMemory(m_name_ptr, (char *)name_buf.GetBytes(), in Read()
293 process->ReadCStringFromMemory(m_name_ptr, m_name, error); in Read()
298 process->ReadCStringFromMemory(m_types_ptr, m_types, error); in Read()
348 process->ReadCStringFromMemory(m_name_ptr, m_name, error); in Read()
353 process->ReadCStringFromMemory(m_type_ptr, m_type, error); in Read()
DAppleObjCRuntimeV1.cpp238 size_t count = process_sp->ReadCStringFromMemory( in Initialize()
DAppleObjCRuntime.cpp209 curr_len = process->ReadCStringFromMemory(result_ptr + cstr_len, buf, in GetObjectDescription()
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_process.py42 obj.ReadCStringFromMemory(0x0, 128, error)
/external/llvm-project/lldb/bindings/interface/
DSBProcess.i280 print('error: ', error)") ReadCStringFromMemory;
283 ReadCStringFromMemory (addr_t addr, void *char_buf, size_t size, lldb::SBError &error);
/external/llvm-project/lldb/source/Core/
DAddress.cpp189 static size_t ReadCStringFromMemory(ExecutionContextScope *exe_scope, in ReadCStringFromMemory() function
518 ReadCStringFromMemory(exe_scope, *this, s); in Dump()
530 ReadCStringFromMemory(exe_scope, so_addr, s); in Dump()
562 ReadCStringFromMemory(exe_scope, so_addr, s); in Dump()
/external/llvm-project/lldb/test/API/python_api/process/
DTestProcessAPI.py73 cstring = process.ReadCStringFromMemory(
94 cstring = process.ReadCStringFromMemory(
/external/llvm-project/lldb/source/Plugins/Process/POSIX/
DNativeProcessELF.cpp126 llvm::Expected<llvm::StringRef> string_or_error = ReadCStringFromMemory( in ReadSVR4LibraryInfo()
/external/llvm-project/lldb/source/DataFormatters/
DTypeFormat.cpp83 if (target_sp->ReadCStringFromMemory( in FormatObject()
DStringPrinter.cpp465 process_sp->ReadCStringFromMemory(options.GetLocation(), buffer, in ReadEncodedBufferAndDumpToStream()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
DInstrumentationRuntimeASan.cpp175 process_sp->ReadCStringFromMemory(description_ptr, description, error); in RetrieveReportData()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
DInstrumentationRuntimeMainThreadChecker.cpp110 target.ReadCStringFromMemory(apiname_ptr, apiName, read_error); in RetrieveReportData()
/external/llvm-project/lldb/include/lldb/API/
DSBProcess.h190 size_t ReadCStringFromMemory(addr_t addr, void *buf, size_t size,
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
DInstrumentationRuntimeUBSan.cpp105 process_sp->ReadCStringFromMemory(ptr, str, error); in RetrieveString()
/external/llvm-project/lldb/include/lldb/Host/common/
DNativeProcessProtocol.h110 ReadCStringFromMemory(lldb::addr_t addr, char *buffer, size_t max_size,
/external/llvm-project/lldb/bindings/python/
Dpython-typemaps.swig104 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
122 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
/external/llvm-project/lldb/source/Plugins/Platform/POSIX/
DPlatformPOSIX.cpp935 process->ReadCStringFromMemory(buffer_addr, name_string, utility_error); in DoLoadImage()
952 size_t num_chars = process->ReadCStringFromMemory(error_addr + addr_size, in DoLoadImage()
/external/llvm-project/lldb/include/lldb/Target/
DTarget.h1005 size_t ReadCStringFromMemory(const Address &addr, std::string &out_str,
1008 size_t ReadCStringFromMemory(const Address &addr, char *dst,
DProcess.h1549 size_t ReadCStringFromMemory(lldb::addr_t vm_addr, char *cstr,
1552 size_t ReadCStringFromMemory(lldb::addr_t vm_addr, std::string &out_str,
/external/llvm-project/lldb/source/API/
DSBProcess.cpp894 size_t SBProcess::ReadCStringFromMemory(addr_t addr, void *buf, size_t size, in ReadCStringFromMemory() function in SBProcess
896 LLDB_RECORD_DUMMY(size_t, SBProcess, ReadCStringFromMemory, in ReadCStringFromMemory()
907 bytes_read = process_sp->ReadCStringFromMemory(addr, (char *)buf, size, in ReadCStringFromMemory()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDYLDRendezvous.cpp482 m_process->ReadCStringFromMemory(addr, str, error); in ReadStringFromMemory()
/external/llvm-project/lldb/test/API/functionalities/postmortem/elf-core/
DTestLinuxCore.py148 F = altprocess.ReadCStringFromMemory(

12