Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/lldb/scripts/android/
H A Dhost_art_bt.py57 art_method_name = process.ReadCStringFromMemory(
112 function = process.ReadCStringFromMemory(
175 function = process.ReadCStringFromMemory(
190 file_name = process.ReadCStringFromMemory(
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.cpp185 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 DAppleObjCRuntimeV1.cpp227 size_t count = process_sp->ReadCStringFromMemory( in Initialize()
H A DAppleObjCRuntime.cpp211 curr_len = process->ReadCStringFromMemory(result_ptr + cstr_len, buf, in GetObjectDescription()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/FreeBSDKernel/
H A DProcessFreeBSDKernel.cpp196 ReadCStringFromMemory(proc + offset_p_comm, comm, sizeof(comm), error); in DoUpdateThreadList()
213 ReadCStringFromMemory(td + offset_td_name, thread_name, in DoUpdateThreadList()
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBProcess.i278 print('error: ', error)") ReadCStringFromMemory;
281 ReadCStringFromMemory (addr_t addr, void *char_buf, size_t size, lldb::SBError &error);
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DAddress.cpp190 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()
/openbsd-src/gnu/llvm/lldb/source/DataFormatters/
H A DTypeFormat.cpp84 if (target_sp->ReadCStringFromMemory( in FormatObject()
H A DStringPrinter.cpp465 target_sp->ReadCStringFromMemory(options.GetLocation(), buffer, in ReadEncodedBufferAndDumpToStream()
/openbsd-src/gnu/llvm/lldb/bindings/lua/
H A Dlua-typemaps.swig86 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
105 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/POSIX/
H A DNativeProcessELF.cpp127 llvm::Expected<llvm::StringRef> string_or_error = ReadCStringFromMemory( in ReadSVR4LibraryInfo()
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp173 process_sp->ReadCStringFromMemory(description_ptr, description, error); in RetrieveReportData()
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp105 target.ReadCStringFromMemory(apiname_ptr, apiName, read_error); in RetrieveReportData()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBProcess.h190 size_t ReadCStringFromMemory(addr_t addr, void *buf, size_t size,
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp101 process_sp->ReadCStringFromMemory(ptr, str, error); in RetrieveString()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp917 process->ReadCStringFromMemory(buffer_addr, name_string, utility_error); in DoLoadImage()
935 size_t num_chars = process->ReadCStringFromMemory(error_addr + addr_size, in DoLoadImage()
/openbsd-src/gnu/llvm/lldb/bindings/python/
H A Dpython-typemaps.swig105 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
123 // SBProcess::ReadCStringFromMemory() uses a void*, but needs to be treated
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h130 ReadCStringFromMemory(lldb::addr_t addr, char *buffer, size_t max_size,
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DTarget.h1049 size_t ReadCStringFromMemory(const Address &addr, std::string &out_str,
1052 size_t ReadCStringFromMemory(const Address &addr, char *dst,
H A DProcess.h1511 size_t ReadCStringFromMemory(lldb::addr_t vm_addr, char *cstr,
1514 size_t ReadCStringFromMemory(lldb::addr_t vm_addr, std::string &out_str,
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBProcess.cpp826 size_t SBProcess::ReadCStringFromMemory(addr_t addr, void *buf, size_t size, in ReadCStringFromMemory() function in SBProcess
837 bytes_read = process_sp->ReadCStringFromMemory(addr, (char *)buf, size, in ReadCStringFromMemory()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp943 process.ReadCStringFromMemory(annotations.message, message, error); in ExtractCrashInfoAnnotations()
960 process.ReadCStringFromMemory(annotations.message2, message2, error); in ExtractCrashInfoAnnotations()
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp509 m_process->ReadCStringFromMemory(addr, str, error); in ReadStringFromMemory()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/Windows/
H A DPlatformWindows.cpp404 process->ReadCStringFromMemory(injected_module_path, module_path, status); in DoLoadImage()
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp673 NativeProcessProtocol::ReadCStringFromMemory(lldb::addr_t addr, char *buffer, in ReadCStringFromMemory() function in NativeProcessProtocol

12