Home
last modified time | relevance | path

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

/reactos/sdk/lib/3rdparty/freetype/src/base/
H A Dftstream.c125 FT_ULong read_bytes; in FT_Stream_ReadAt() local
142 if ( read_bytes > count ) in FT_Stream_ReadAt()
143 read_bytes = count; in FT_Stream_ReadAt()
150 if ( read_bytes < count ) in FT_Stream_ReadAt()
168 FT_ULong read_bytes = 0; in FT_Stream_TryRead() local
179 if ( read_bytes > count ) in FT_Stream_TryRead()
180 read_bytes = count; in FT_Stream_TryRead()
185 stream->pos += read_bytes; in FT_Stream_TryRead()
188 return read_bytes; in FT_Stream_TryRead()
238 FT_ULong read_bytes; in FT_Stream_EnterFrame() local
[all …]
/reactos/dll/directx/wine/d3dxof/
H A Dparsing.c405 if (!read_bytes(buf, tmp, len)) in is_keyword()
413 if (!read_bytes(buf, tmp, 1)) in is_keyword()
648 if (!read_bytes(buf, &c, 1)) in parse_TOKEN()
655 if (!read_bytes(buf, &c, 1)) in parse_TOKEN()
663 if (!read_bytes(buf, &c, 1)) in parse_TOKEN()
722 if (!read_bytes(buf, &token, 2)) in parse_TOKEN()
758 if (!read_bytes(buf, &value, 4)) in parse_TOKEN()
777 if (!read_bytes(buf, &count, 4)) in parse_TOKEN()
779 if (!read_bytes(buf, name, count)) in parse_TOKEN()
789 if (!read_bytes(buf, &integer, 4)) in parse_TOKEN()
[all …]
/reactos/modules/rostests/winetests/kernel32/
H A Dpipe.c2716 DWORD read_bytes = 0xdeadbeef; in _overlapped_read_sync() local
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()
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()
[all …]
H A Dprocess.c1757 SIZE_T dummy, read_bytes; in test_OpenProcess() local
1781 read_bytes = 0xdeadbeef; in test_OpenProcess()
1785 ok(read_bytes == sizeof(dummy), "wrong read bytes %ld\n", read_bytes); in test_OpenProcess()
1802 read_bytes = 0xdeadbeef; in test_OpenProcess()
1804 ok(!ReadProcessMemory(hproc, addr1, &dummy, sizeof(dummy), &read_bytes), in test_OpenProcess()
1807 ok(read_bytes == 0, "wrong read bytes %ld\n", read_bytes); in test_OpenProcess()
1814 read_bytes = VirtualQueryEx(hproc, addr1, &info, sizeof(info)); in test_OpenProcess()
1815 ok(read_bytes == sizeof(info), "VirtualQueryEx error %d\n", GetLastError()); in test_OpenProcess()
1840 read_bytes = VirtualQueryEx(hproc, addr1, &info, sizeof(info)); in test_OpenProcess()
1841 if (read_bytes) /* win8 */ in test_OpenProcess()
[all …]
/reactos/dll/win32/wininet/
H A Dhttp.c2678 if(read_bytes) in refill_read_buffer()
2679 *read_bytes = read; in refill_read_buffer()
2774 int read_bytes; in chunked_read() local
2854 chunked_stream->buf_pos += read_bytes; in chunked_read()
2864 if(!read_bytes) { in chunked_read()
2870 chunked_stream->chunk_size -= read_bytes; in chunked_read()
2871 size -= read_bytes; in chunked_read()
2872 ret_read += read_bytes; in chunked_read()
3126 DWORD read_bytes; in async_read_file_proc() local
3129 if (res != ERROR_SUCCESS || !read_bytes) in async_read_file_proc()
[all …]
/reactos/base/applications/atactl/
H A Datactl.cpp1315 ULONG read_bytes; in _fgets() local
1325 if(!ReadFile(stream, &ch, 1, &read_bytes, NULL) || in _fgets()
1326 !read_bytes) in _fgets()
/reactos/dll/win32/dbghelp/
H A Dmodule.c483 DWORD read_bytes; in image_check_debug_link() local
512 if (ReadFile(handle, &magic, sizeof(magic), &read_bytes, NULL) && magic == IMAGE_DOS_SIGNATURE) in image_check_debug_link()