Searched refs:completion_tv (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/RDP/client-1.8.3/
H A Drdpsnd.h36 struct timeval completion_tv; member in struct:audio_packet
H A Drdpsnd.c917 gettimeofday(&packet->completion_tv, NULL);
919 packet->completion_tv.tv_usec += completed_in_us;
920 packet->completion_tv.tv_sec += packet->completion_tv.tv_usec / 1000000;
921 packet->completion_tv.tv_usec %= 1000000;
954 if (now.tv_sec < packet->completion_tv.tv_sec)
957 if ((now.tv_sec == packet->completion_tv.tv_sec) &&
958 (now.tv_usec < packet->completion_tv.tv_usec))
961 elapsed = (packet->completion_tv.tv_sec - packet->arrive_tv.tv_sec) * 1000000 +
962 (packet->completion_tv
[all...]

Completed in 89 milliseconds