Searched refs:now (Results 1 - 25 of 43) sorted by path

12

/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...
/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/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/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/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/mterp/armv5te/
H A DOP_CHECK_CAST.S22 beq .L${opcode}_resolve @ not resolved, do it now
H A DOP_INSTANCE_OF.S27 beq .L${opcode}_resolve @ not resolved, do it now
H A DOP_INVOKE_DIRECT.S27 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.S38 EXPORT_PC() @ resolve() could throw, so export now
H A DOP_SGET_WIDE.S43 EXPORT_PC() @ resolve() could throw, so export now
H A DOP_SPUT.S39 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_CHECK_CAST.S22 beqz a1, .L${opcode}_resolve # not resolved, do it now
H A DOP_CHECK_CAST_JUMBO.S26 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
H A DOP_INSTANCE_OF_JUMBO.S33 beqz a1, .L${opcode}_resolve # not resolved, do it now
H A DOP_SGET.S28 EXPORT_PC() # resolve() could throw, so export now
H A DOP_SGET_JUMBO.S32 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_SGET_WIDE_JUMBO.S27 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_JUMBO.S31 EXPORT_PC() # resolve() may throw, so export now

Completed in 127 milliseconds

12