Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.cpp164 process->ReadCStringFromMemory(m_name_ptr, (char *)name_buf.GetBytes(), in Read()
261 process->ReadCStringFromMemory(m_name_ptr, m_name, error); in Read()
266 process->ReadCStringFromMemory(m_types_ptr, m_types, error); in Read()
316 process->ReadCStringFromMemory(m_name_ptr, m_name, error); in Read()
321 process->ReadCStringFromMemory(m_type_ptr, m_type, error); in Read()
H A DAppleObjCRuntimeV1.cpp238 size_t count = process_sp->ReadCStringFromMemory( in Initialize()
H A DAppleObjCRuntime.cpp193 curr_len = process->ReadCStringFromMemory(result_ptr + cstr_len, buf, in GetObjectDescription()
H A DAppleObjCRuntimeV2.cpp1057 m_parent.m_process->ReadCStringFromMemory(key, key_string, err); in operator *()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DAddress.cpp190 static size_t ReadCStringFromMemory(ExecutionContextScope *exe_scope, in ReadCStringFromMemory() function
505 ReadCStringFromMemory(exe_scope, *this, s); in Dump()
517 ReadCStringFromMemory(exe_scope, so_addr, s); in Dump()
549 ReadCStringFromMemory(exe_scope, so_addr, s); in Dump()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnLLDBProxySBValue.cpp124 const size_t nReadSize = sbProcess.ReadCStringFromMemory( in GetCString()
/freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeFormat.cpp84 if (target_sp->ReadCStringFromMemory( in FormatObject()
H A DStringPrinter.cpp442 process_sp->ReadCStringFromMemory( in ReadStringAndDumpToStream()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DASanRuntime.cpp175 process_sp->ReadCStringFromMemory(description_ptr, description, error); in RetrieveReportData()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DMainThreadCheckerRuntime.cpp100 target.ReadCStringFromMemory(apiname_ptr, apiName, read_error); in RetrieveReportData()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBProcess.h203 size_t ReadCStringFromMemory(addr_t addr, void *buf, size_t size,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DUBSanRuntime.cpp108 process_sp->ReadCStringFromMemory(ptr, str, error); in RetrieveString()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DTarget.h992 size_t ReadCStringFromMemory(const Address &addr, std::string &out_str,
995 size_t ReadCStringFromMemory(const Address &addr, char *dst,
H A DProcess.h1803 size_t ReadCStringFromMemory(lldb::addr_t vm_addr, char *cstr,
1806 size_t ReadCStringFromMemory(lldb::addr_t vm_addr, std::string &out_str,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp1282 process->ReadCStringFromMemory(buffer_addr, name_string, utility_error); in DoLoadImage()
1299 size_t num_chars = process->ReadCStringFromMemory(error_addr + addr_size, in DoLoadImage()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp446 m_process->ReadCStringFromMemory(addr, str, error); in ReadStringFromMemory()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBProcess.cpp988 size_t SBProcess::ReadCStringFromMemory(addr_t addr, void *buf, size_t size, in ReadCStringFromMemory() function in SBProcess
997 bytes_read = process_sp->ReadCStringFromMemory(addr, (char *)buf, size, in ReadCStringFromMemory()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DTSanRuntime.cpp260 process_sp->ReadCStringFromMemory(ptr, str, error); in RetrieveString()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTarget.cpp1837 size_t Target::ReadCStringFromMemory(const Address &addr, std::string &out_str, in ReadCStringFromMemory() function in Target
1844 size_t length = ReadCStringFromMemory(address, buf, sizeof(buf), error); in ReadCStringFromMemory()
1859 size_t Target::ReadCStringFromMemory(const Address &addr, char *dst, in ReadCStringFromMemory() function in Target
H A DProcess.cpp2199 size_t Process::ReadCStringFromMemory(addr_t addr, std::string &out_str, in ReadCStringFromMemory() function in Process
2205 size_t length = ReadCStringFromMemory(curr_addr, buf, sizeof(buf), error); in ReadCStringFromMemory()
2272 size_t Process::ReadCStringFromMemory(addr_t addr, char *dst, in ReadCStringFromMemory() function in Process
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp1539 process->ReadCStringFromMemory(addr_t(args[eRsResNamePtr]), res_name, err); in CaptureScriptInit()
1547 process->ReadCStringFromMemory(addr_t(args[eRsCachedDirPtr]), cache_dir, err); in CaptureScriptInit()
2138 GetProcess()->ReadCStringFromMemory(address, name, err); in JITSubelements()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectMemory.cpp715 size_t read = target->ReadCStringFromMemory(data_addr, &buffer[0], in DoExecute()