Home
last modified time | relevance | path

Searched refs:curr_dst (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp2235 char *curr_dst = dst; in ReadStringFromMemory() local
2243 size_t bytes_read = ReadMemory(curr_addr, curr_dst, bytes_to_read, error); in ReadStringFromMemory()
2259 curr_dst += bytes_read; in ReadStringFromMemory()
2284 char *curr_dst = dst; in ReadCStringFromMemory() local
2291 size_t bytes_read = ReadMemory(curr_addr, curr_dst, bytes_to_read, error); in ReadCStringFromMemory()
2298 const size_t len = strlen(curr_dst); in ReadCStringFromMemory()
2305 curr_dst += bytes_read; in ReadCStringFromMemory()
H A DTarget.cpp1876 char *curr_dst = dst; in ReadCStringFromMemory() local
1884 ReadMemory(address, false, curr_dst, bytes_to_read, error); in ReadCStringFromMemory()
1891 const size_t len = strlen(curr_dst); in ReadCStringFromMemory()
1898 curr_dst += bytes_read; in ReadCStringFromMemory()