Home
last modified time | relevance | path

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

/libuv/src/win/
H A Dpipe.c1953 DWORD max_bytes) { in uv__pipe_read_data() argument
1973 if (max_bytes > buf.len) in uv__pipe_read_data()
1974 max_bytes = buf.len; in uv__pipe_read_data()
1984 if (max_bytes > bytes_available) in uv__pipe_read_data()
1985 max_bytes = bytes_available; in uv__pipe_read_data()
1987 if (max_bytes == 0 || ReadFile(handle->handle, buf.base, max_bytes, bytes_read, NULL)) in uv__pipe_read_data()
1992 more = max_bytes < bytes_available; in uv__pipe_read_data()
2000 if (ReadFile(handle->handle, buf.base, max_bytes, bytes_read, &req->u.io.overlapped)) { in uv__pipe_read_data()
2016 more = *bytes_read == max_bytes; in uv__pipe_read_data()

Completed in 12 milliseconds