Lines Matching refs:now
449 struct timespec now; in dvmGetRelativeTimeNsec() local
450 clock_gettime(CLOCK_MONOTONIC, &now); in dvmGetRelativeTimeNsec()
451 return (u8)now.tv_sec*1000000000LL + now.tv_nsec; in dvmGetRelativeTimeNsec()
453 struct timeval now; in dvmGetRelativeTimeNsec()
454 gettimeofday(&now, NULL); in dvmGetRelativeTimeNsec()
455 return (u8)now.tv_sec*1000000000LL + now.tv_usec * 1000LL; in dvmGetRelativeTimeNsec()
467 struct timespec now; in dvmGetThreadCpuTimeNsec() local
468 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &now); in dvmGetThreadCpuTimeNsec()
469 return (u8)now.tv_sec*1000000000LL + now.tv_nsec; in dvmGetThreadCpuTimeNsec()
486 struct timespec now; in dvmGetOtherThreadCpuTimeNsec()
487 clock_gettime(clockId, &now); in dvmGetOtherThreadCpuTimeNsec()
488 return (u8)now.tv_sec*1000000000LL + now.tv_nsec; in dvmGetOtherThreadCpuTimeNsec()