Searched refs:curr_dst (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/lldb/source/Target/ |
D | Process.cpp | 2107 char *curr_dst = dst; in ReadStringFromMemory() local 2115 size_t bytes_read = ReadMemory(curr_addr, curr_dst, bytes_to_read, error); in ReadStringFromMemory() 2131 curr_dst += bytes_read; in ReadStringFromMemory() 2156 char *curr_dst = dst; in ReadCStringFromMemory() local 2163 size_t bytes_read = ReadMemory(curr_addr, curr_dst, bytes_to_read, error); in ReadCStringFromMemory() 2170 const size_t len = strlen(curr_dst); in ReadCStringFromMemory() 2177 curr_dst += bytes_read; in ReadCStringFromMemory()
|
D | Target.cpp | 1853 char *curr_dst = dst; in ReadCStringFromMemory() local 1861 ReadMemory(address, false, curr_dst, bytes_to_read, error); in ReadCStringFromMemory() 1868 const size_t len = strlen(curr_dst); in ReadCStringFromMemory() 1875 curr_dst += bytes_read; in ReadCStringFromMemory()
|