Lines Matching refs:bytes_read
295 size_t bytes_read = 0; in GetSTDOUT() local
299 bytes_read = process_sp->GetSTDOUT(dst, dst_len, error); in GetSTDOUT()
307 static_cast<void *>(process_sp.get()), static_cast<int>(bytes_read), in GetSTDOUT()
308 dst, static_cast<uint64_t>(dst_len), static_cast<uint64_t>(bytes_read)); in GetSTDOUT()
310 return bytes_read; in GetSTDOUT()
314 size_t bytes_read = 0; in GetSTDERR() local
318 bytes_read = process_sp->GetSTDERR(dst, dst_len, error); in GetSTDERR()
326 static_cast<void *>(process_sp.get()), static_cast<int>(bytes_read), in GetSTDERR()
327 dst, static_cast<uint64_t>(dst_len), static_cast<uint64_t>(bytes_read)); in GetSTDERR()
329 return bytes_read; in GetSTDERR()
333 size_t bytes_read = 0; in GetAsyncProfileData() local
337 bytes_read = process_sp->GetAsyncProfileData(dst, dst_len, error); in GetAsyncProfileData()
345 static_cast<void *>(process_sp.get()), static_cast<int>(bytes_read), in GetAsyncProfileData()
346 dst, static_cast<uint64_t>(dst_len), static_cast<uint64_t>(bytes_read)); in GetAsyncProfileData()
348 return bytes_read; in GetAsyncProfileData()
947 size_t bytes_read = 0; in ReadMemory() local
963 bytes_read = process_sp->ReadMemory(addr, dst, dst_len, sb_error.ref()); in ReadMemory()
982 static_cast<uint64_t>(bytes_read)); in ReadMemory()
985 return bytes_read; in ReadMemory()
990 size_t bytes_read = 0; in ReadCStringFromMemory() local
997 bytes_read = process_sp->ReadCStringFromMemory(addr, (char *)buf, size, in ReadCStringFromMemory()
1010 return bytes_read; in ReadCStringFromMemory()