Searched refs:now (Results 1 - 25 of 36) sorted by relevance

12

/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/
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...]
H A DSignalCatcher.cpp109 time_t now = time(NULL); local
113 ptm = localtime_r(&now, &tmbuf);
115 ptm = localtime(&now);
/dalvik/vm/test/
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;
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 */
/dalvik/vm/mterp/x86/
H A DOP_MUL_LONG_2ADDR.S29 leal (%ecx,rIBASE),rIBASE # full result now in %edx:%eax
H A DOP_INVOKE_DIRECT.S28 je .L${opcode}_resolve # not resolved, do it now
H A DOP_MUL_LONG.S30 leal (%ecx,rIBASE),rIBASE # full result now in rIBASE:%eax
/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/mterp/armv5te/
H A DOP_INVOKE_DIRECT.S27 beq .L${opcode}_resolve @ not resolved, do it now
H A DOP_SGET.S38 EXPORT_PC() @ resolve() could throw, so export now
H A DOP_SPUT.S39 EXPORT_PC() @ resolve() could throw, so export now
H A DOP_CHECK_CAST.S22 beq .L${opcode}_resolve @ not resolved, do it now
H A DOP_INVOKE_SUPER.S27 b .L${opcode}_resolve @ do resolve now
H A DOP_SGET_WIDE.S43 EXPORT_PC() @ resolve() could throw, so export now
H A DOP_SPUT_OBJECT.S46 EXPORT_PC() @ resolve() could throw, so export now
H A DOP_SPUT_WIDE.S44 EXPORT_PC() @ resolve() could throw, so export now
/dalvik/vm/mterp/mips/
H A DOP_SGET.S28 EXPORT_PC() # resolve() could throw, so export now
H A DOP_SGET_WIDE.S28 EXPORT_PC() # resolve() could throw, so export now
H A DOP_SPUT.S26 EXPORT_PC() # resolve() may throw, so export now
H A DOP_SPUT_OBJECT.S26 EXPORT_PC() # resolve() may throw, so export now
H A DOP_CHECK_CAST.S22 beqz a1, .L${opcode}_resolve # not resolved, do it now
H A DOP_INSTANCE_OF.S26 beqz a1, .L${opcode}_resolve # not resolved, do it now
/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);

Completed in 7469 milliseconds

12