HomeSort by relevance Sort by last modified time
    Searched refs:ReadCStringFromMemory (Results 1 - 19 of 19) sorted by null

  /external/lldb/test/python_api/default-constructor/
sb_process.py 39 obj.ReadCStringFromMemory(0x0, 128, error)
  /external/lldb/include/lldb/API/
SBProcess.h 227 ReadCStringFromMemory (addr_t addr, void *buf, size_t size, lldb::SBError &error);
  /external/lldb/scripts/Python/interface/
SBProcess.i 280 cstring = process.ReadCStringFromMemory(0x1000, 256, error)
285 ") ReadCStringFromMemory;
288 ReadCStringFromMemory (addr_t addr, void *buf, size_t size, lldb::SBError &error);
  /external/lldb/test/python_api/process/
TestProcessAPI.py 117 cstring = process.ReadCStringFromMemory(val.GetValueAsUnsigned(), 256, error)
119 self.fail("SBProcess.ReadCStringFromMemory() failed")
123 self.expect(cstring, "Result from SBProcess.ReadCStringFromMemory() matches our expected output",
134 cstring = process.ReadCStringFromMemory(val.AddressOf().GetValueAsUnsigned(), 256, error)
136 self.fail("SBProcess.ReadCStringFromMemory() failed")
140 self.expect(cstring, "Result from SBProcess.ReadCStringFromMemory() matches our expected output",
142 startstr = 'lldb.SBProcess.ReadCStringFromMemory() works!')
153 self.fail("SBProcess.ReadCStringFromMemory() failed")
  /external/lldb/source/Core/
Address.cpp 173 ReadCStringFromMemory (ExecutionContextScope *exe_scope, const Address &address, Stream *strm)
488 ReadCStringFromMemory (exe_scope, *this, s);
501 ReadCStringFromMemory (exe_scope, so_addr, s);
537 ReadCStringFromMemory (exe_scope, so_addr, s);
    [all...]
ValueObject.cpp     [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntime.cpp 169 curr_len = process->ReadCStringFromMemory(result_ptr + cstr_len, buf, sizeof(buf), error);
AppleObjCRuntimeV2.cpp 727 m_parent.m_process->ReadCStringFromMemory(key, key_string, err);
    [all...]
AppleObjCRuntimeV1.cpp 273 size_t count = process_sp->ReadCStringFromMemory(name_ptr, (char*)buffer_sp->GetBytes(), 1024, error);
  /external/lldb/include/lldb/Target/
Target.h 898 ReadCStringFromMemory (const Address& addr, std::string &out_str, Error &error);
901 ReadCStringFromMemory (const Address& addr, char *dst, size_t dst_max_len, Error &result_error);
    [all...]
Process.h     [all...]
  /external/lldb/source/API/
SBProcess.cpp 1024 SBProcess::ReadCStringFromMemory (addr_t addr, void *buf, size_t size, lldb::SBError &sb_error)
1034 bytes_read = process_sp->ReadCStringFromMemory (addr, (char *)buf, size, sb_error.ref());
1040 log->Printf ("SBProcess(%p)::ReadCStringFromMemory() => error: process is running", process_sp.get());
    [all...]
  /external/lldb/source/Target/
Target.cpp     [all...]
Process.cpp     [all...]
  /external/lldb/examples/summaries/cocoa/
objc_runtime.py 21 content = process.ReadCStringFromMemory(pointer,max_len,error)
  /external/lldb/source/Commands/
CommandObjectMemory.cpp 735 size_t read = target->ReadCStringFromMemory(data_addr, &buffer[0], item_byte_size+1, error);
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.cpp     [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp     [all...]
  /external/lldb/source/Plugins/ObjectFile/Mach-O/
ObjectFileMachO.cpp     [all...]

Completed in 153 milliseconds