Searched defs:now (Results 1 - 9 of 9) sorted by relevance

/dalvik/vm/jdwp/
H A DJdwpMain.cpp319 ALOGE("JDWP thread no longer in VMWAIT (now %d); resetting",
358 /* if we had threads suspended, resume them now */
412 struct timespec now; local
413 clock_gettime(CLOCK_MONOTONIC, &now);
414 return now.tv_sec * 1000LL + now.tv_nsec / 1000000LL;
416 struct timeval now;
417 gettimeofday(&now, NULL);
418 return now.tv_sec * 1000LL + now
444 s8 now = dvmJdwpGetNowMsec(); local
[all...]
/dalvik/vm/test/
H A DTestIndirectRefTable.cpp36 start_ = now();
40 return (now() - start_) * 0.000001f;
46 static u8 now() { function in class:Stopwatch
117 /* table should be empty now */
149 /* table should be empty now */
189 /* table should be empty now */
H A DAtomicTest.cpp22 * for it, so this will do for now.
73 struct timespec now; local
74 clock_gettime(CLOCK_MONOTONIC, &now);
75 return (int64_t) now.tv_sec*1000000000LL + now.tv_nsec;
77 struct timeval now;
78 gettimeofday(&now, NULL);
79 return (int64_t) now.tv_sec*1000000000LL + now.tv_usec * 1000LL;
/dalvik/vm/
H A DSignalCatcher.cpp109 time_t now = time(NULL); local
113 ptm = localtime_r(&now, &tmbuf);
115 ptm = localtime(&now);
H A DMisc.cpp449 struct timespec now; local
450 clock_gettime(CLOCK_MONOTONIC, &now);
451 return (u8)now.tv_sec*1000000000LL + now.tv_nsec;
453 struct timeval now;
454 gettimeofday(&now, NULL);
455 return (u8)now.tv_sec*1000000000LL + now.tv_usec * 1000LL;
467 struct timespec now; local
468 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &now);
[all...]
/dalvik/vm/hprof/
H A DHprofOutput.cpp94 struct timeval now; local
111 if (gettimeofday(&now, NULL) < 0) {
114 nowMs = (u8)now.tv_sec * 1000 + now.tv_usec / 1000;
/dalvik/vm/alloc/
H A DDdmHeap.cpp59 struct timeval now; local
89 if (gettimeofday(&now, NULL) < 0) {
92 nowMs = (u8)now.tv_sec * 1000 + now.tv_usec / 1000;
/dalvik/vm/native/
H A Ddalvik_system_VMDebug.cpp506 struct timespec now; local
507 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &now);
508 result = (jlong) (now.tv_sec*1000000000LL + now.tv_nsec);
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 168 milliseconds