Lines Matching refs:read_bytes
2716 DWORD read_bytes = 0xdeadbeef; in _overlapped_read_sync() local
2722 res = ReadFile(reader, buf, buf_size, &read_bytes, &overlapped); in _overlapped_read_sync()
2728 ok_(__FILE__,line)(!read_bytes, "read_bytes %u expected 0\n", read_bytes); in _overlapped_read_sync()
2730 …ok_(__FILE__,line)(read_bytes == expected_result, "read_bytes %u expected %u\n", read_bytes, expec… in _overlapped_read_sync()
2732 read_bytes = 0xdeadbeef; in _overlapped_read_sync()
2733 res = GetOverlappedResult(reader, &overlapped, &read_bytes, FALSE); in _overlapped_read_sync()
2739 …ok_(__FILE__,line)(read_bytes == expected_result, "read_bytes %u expected %u\n", read_bytes, expec… in _overlapped_read_sync()
2746 DWORD read_bytes = 0xdeadbeef; in _overlapped_read_async() local
2751 res = ReadFile(reader, buf, buf_size, &read_bytes, overlapped); in _overlapped_read_async()
2753 ok_(__FILE__,line)(!read_bytes, "read_bytes %u expected 0\n", read_bytes); in _overlapped_read_async()
3089 DWORD read_bytes; in test_overlapped_transport() local
3145 res = ReadFile(server, buf, 10, &read_bytes, NULL); in test_overlapped_transport()
3150 ok(read_bytes == 10, "read_bytes = %u\n", read_bytes); in test_overlapped_transport()