Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDAddress.cpp173 ReadCStringFromMemory (ExecutionContextScope *exe_scope, const Address &address, Stream *strm) in ReadCStringFromMemory() function
518 ReadCStringFromMemory (exe_scope, *this, s); in Dump()
531 ReadCStringFromMemory (exe_scope, so_addr, s); in Dump()
567 ReadCStringFromMemory (exe_scope, so_addr, s); in Dump()
/NextBSD/contrib/llvm/tools/lldb/tools/lldb-mi/
HDMICmnLLDBProxySBValue.cpp127 …const size_t nReadSize = sbProcess.ReadCStringFromMemory((lldb::addr_t)nNum, pBuffer, nBufferSize,… in GetCString()
/NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/
HDTypeFormat.cpp111 …if (target_sp->ReadCStringFromMemory(address, (char*)buffer_sp->GetBytes(), max_len, error) && err… in FormatObject()
HDStringPrinter.cpp471 …process_sp->ReadCStringFromMemory(options.GetLocation(), (char*)buffer_sp->GetBytes(), size, my_er… in ReadStringAndDumpToStream()
HDCXXFormatterFunctions.cpp701 …my_data_read = process_sp->ReadCStringFromMemory(location, (char*)buffer_sp->GetBytes(), size, my_… in ReadAsciiBufferAndDumpToStream()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/API/
HDSBProcess.h255 ReadCStringFromMemory (addr_t addr, void *buf, size_t size, lldb::SBError &error);
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/
HDAddressSanitizerRuntime.cpp199 m_process->ReadCStringFromMemory(description_ptr, description, error); in RetrieveReportData()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/
HDTarget.h1157 ReadCStringFromMemory (const Address& addr, std::string &out_str, Error &error);
1160 ReadCStringFromMemory (const Address& addr, char *dst, size_t dst_max_len, Error &result_error);
HDProcess.h2173 ReadCStringFromMemory (lldb::addr_t vm_addr,
2179 ReadCStringFromMemory (lldb::addr_t vm_addr,
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
HDRenderScriptRuntime.cpp350 process->ReadCStringFromMemory((lldb::addr_t)rs_resnameptr_u32, resname, error); in CaptureScriptInit1()
358 process->ReadCStringFromMemory((lldb::addr_t)rs_cachedirptr_u32, cachedir, error); in CaptureScriptInit1()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
HDDYLDRendezvous.cpp370 m_process->ReadCStringFromMemory(addr, str, error); in ReadStringFromMemory()
/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBProcess.cpp1105 SBProcess::ReadCStringFromMemory (addr_t addr, void *buf, size_t size, lldb::SBError &sb_error) in ReadCStringFromMemory() function in SBProcess
1115 … bytes_read = process_sp->ReadCStringFromMemory (addr, (char *)buf, size, sb_error.ref()); in ReadCStringFromMemory()
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDTarget.cpp1506 Target::ReadCStringFromMemory (const Address& addr, std::string &out_str, Error &error) in ReadCStringFromMemory() function in Target
1514 size_t length = ReadCStringFromMemory (address, buf, sizeof(buf), error); in ReadCStringFromMemory()
1531 Target::ReadCStringFromMemory (const Address& addr, char *dst, size_t dst_max_len, Error &result_er… in ReadCStringFromMemory() function in Target
HDProcess.cpp2604 Process::ReadCStringFromMemory (addr_t addr, std::string &out_str, Error &error) in ReadCStringFromMemory() function in Process
2611 size_t length = ReadCStringFromMemory (curr_addr, buf, sizeof(buf), error); in ReadCStringFromMemory()
2681 Process::ReadCStringFromMemory (addr_t addr, char *dst, size_t dst_max_len, Error &result_error) in ReadCStringFromMemory() function in Process
/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectMemory.cpp751 … size_t read = target->ReadCStringFromMemory(data_addr, &buffer[0], item_byte_size+1, error); in DoExecute()