Home | History | Annotate | Download | only in jdwp

Lines Matching full:now

285                 LOGE("JDWP thread no longer in VMWAIT (now %d); resetting\n",
324 /* if we had threads suspended, resume them now */
378 struct timespec now;
379 clock_gettime(CLOCK_MONOTONIC, &now);
380 return now.tv_sec * 1000LL + now.tv_nsec / 1000000LL;
382 struct timeval now;
383 gettimeofday(&now, NULL);
384 return now.tv_sec * 1000LL + now.tv_usec / 1000LL;
409 /* now get the current time */
410 s8 now = dvmJdwpGetNowMsec();
411 assert(now > last);
413 LOGV("+++ debugger interval=%lld\n", now - last);
414 return now - last;