Home
last modified time | relevance | path

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

/packages/modules/Virtualization/microdroid/kdump/
Dcrashdump.c97 ssize_t read_bytes = read(vmcore, buf, BUF_SIZE); in main() local
98 if (read_bytes == -1) { in main()
101 ssize_t written_bytes = write(dest, buf, read_bytes); in main()
/packages/modules/adb/
Dsysdeps_win32.cpp253 DWORD read_bytes; in _fh_file_read() local
255 if (!ReadFile(f->fh_handle, buf, (DWORD)len, &read_bytes, nullptr)) { in _fh_file_read()
259 } else if (read_bytes < (DWORD)len) { in _fh_file_read()
262 return read_bytes; in _fh_file_read()