Searched defs:BytesSent (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/RawIp4Tx/
H A DRawIp4Tx.c34 UINT32 BytesSent; local
117 BytesSent = 0;
120 &mBuffer[BytesSent],
121 sizeof ( mBuffer ) - BytesSent,
130 BytesSent += (UINT32)BytesTransmitted;
132 } while ( sizeof ( mBuffer ) > BytesSent );
136 TotalSent += BytesSent;
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/OobTx/
H A DOobTx.c35 UINT32 BytesSent; local
153 BytesSent = 0;
156 &mBuffer[BytesSent],
157 sizeof ( mBuffer ) - BytesSent,
164 BytesSent += (UINT32)BytesTransmitted;
166 } while ( sizeof ( mBuffer ) > BytesSent );
170 TransmittedBefore += BytesSent;
179 BytesSent = 0;
182 &mOob[BytesSent],
183 sizeof ( mOob ) - BytesSent,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/DataSource/
H A DDataSource.c415 size_t BytesSent; local
439 BytesSent = write ( Socket, &Buffer[0], sizeof ( Buffer ));
440 if ( -1 == BytesSent ) {
465 TotalBytesSent += BytesSent;
1196 UINT64 BytesSent; local
1209 BytesSent = TotalBytesSent;
1210 if ( 0 != BytesSent ) {
1213 DeltaBytes = BytesSent - PreviousBytes;
1214 PreviousBytes = BytesSent;
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageInfo.cpp2326 LONG64 BytesSent = 0; local
2343 CHECK_ERROR_RET(vrdeServerInfo, COMGETTER(BytesSent)(&BytesSent), rc);
2395 ThroughputSend = (BytesSent * 1000) / (EndTime - BeginTime);
2401 RTPrintf("VRDEBytesSent=%lld\n", BytesSent);
2411 RTPrintf("Sent: %lld Bytes\n", BytesSent);

Completed in 88 milliseconds