Home | History | Annotate | Download | only in jni

Lines Matching refs:tv

75     struct timeval tv;
77 gettimeofday(&tv, NULL);
78 return tv.tv_sec * 1000LL + tv.tv_usec / 1000;
95 struct timeval tv;
97 gettimeofday(&tv, NULL);
98 return tv.tv_sec * 1000000LL + tv.tv_nsec / 1000;
108 struct timeval tv;
110 gettimeofday(&tv, NULL);
111 return tv.tv_sec * 1000000LL + tv.tv_usec;