Home | History | Annotate | Download | only in block

Lines Matching refs:ov

112     OVERLAPPED ov;
118 memset(&ov, 0, sizeof(ov));
119 ov.Offset = offset;
120 ov.OffsetHigh = offset >> 32;
121 ret = ReadFile(s->hfile, buf, count, &ret_count, &ov);
133 OVERLAPPED ov;
139 memset(&ov, 0, sizeof(ov));
140 ov.Offset = offset;
141 ov.OffsetHigh = offset >> 32;
142 ret = WriteFile(s->hfile, buf, count, &ret_count, &ov);