Home
last modified time | relevance | path

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

/reactos/sdk/lib/3rdparty/libxml2/
H A Dnanohttp.c454 int total_sent = 0; in xmlNanoHTTPSend() local
463 while (total_sent < outlen) { in xmlNanoHTTPSend()
464 int nsent = send(ctxt->fd, SEND_ARG2_CAST (xmt_ptr + total_sent), in xmlNanoHTTPSend()
465 outlen - total_sent, 0); in xmlNanoHTTPSend()
468 total_sent += nsent; in xmlNanoHTTPSend()
475 if (total_sent == 0) in xmlNanoHTTPSend()
476 total_sent = -1; in xmlNanoHTTPSend()
512 return total_sent; in xmlNanoHTTPSend()
/reactos/modules/rostests/winetests/ws2_32/
H A Dsock.c9060 DWORD num_bytes, err, file_size, total_sent; in test_TransmitFile() local
9208 WSAGetOverlappedResult(client, &ov, &total_sent, FALSE, NULL); in test_TransmitFile()
9209 ok(total_sent == file_size, in test_TransmitFile()
9211 total_sent, file_size); in test_TransmitFile()
9229 WSAGetOverlappedResult(client, &ov, &total_sent, FALSE, NULL); in test_TransmitFile()
9230 ok(total_sent == (file_size - ov.Offset), in test_TransmitFile()
9232 total_sent, file_size - ov.Offset); in test_TransmitFile()
9254 WSAGetOverlappedResult(client, &ov, &total_sent, FALSE, NULL); in test_TransmitFile()
9255 ok(total_sent == (file_size + buffers.HeadLength + buffers.TailLength), in test_TransmitFile()
9257 total_sent, file_size + buffers.HeadLength + buffers.TailLength); in test_TransmitFile()