Lines Matching refs:duration
528 double duration = (time2.tv_sec - time1.tv_sec)*1000.0 + (time2.tv_nsec - time1.tv_nsec)/1000000.0;
531 LOG("duration : %f ms", duration);
532 if (CheckValueClose(1000, duration)) {
533 LOG("Timeout value accuracy check fail, expected=1000, actual=%f", duration);
621 double duration = (time2.tv_sec - time1.tv_sec)*1000.0 + (time2.tv_nsec - time1.tv_nsec)/1000000.0;
622 LOG("duration: %f ms", duration);
623 if (CheckValueClose(0.1, duration)) {
624 LOG("sigwaitinfo should return immediately, but %f ms used", duration);
667 long duration = (time2.tv_sec - time1.tv_sec)*1000 + (time2.tv_nsec - time1.tv_nsec)/1000000;
668 LOG("paused time: %ld ms", duration);
669 if (! CheckValueClose(100, duration, 0.2)) {