HomeSort by relevance Sort by last modified time
    Searched refs:tv_start (Results 1 - 2 of 2) sorted by null

  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 128 struct timeval tv_start, tv_end, tv_interval; variable in typeref:struct:timeval
836 gettimeofday(&tv_start, NULL);
865 if (tv_start.tv_usec > tv_interval.tv_usec)
867 tv_interval.tv_sec -= tv_start.tv_sec;
868 tv_interval.tv_usec -= tv_start.tv_usec;
885 localtime_r((time_t*)&tv_start.tv_sec, &tm);
886 mprintf("Started %3d:%02d:%02d.%06d\n", tm.tm_hour, tm.tm_min, tm.tm_sec, tv_start.tv_usec);
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderVP9Hybrid.cpp 363 struct timeval tv_start, tv_end; local
365 gettimeofday(&tv_start,NULL);
395 time_ms = (int32_t)(tv_end.tv_sec - tv_start.tv_sec) * 1000 + (int32_t)(tv_end.tv_usec - tv_start.tv_usec)/1000;

Completed in 832 milliseconds