Home
last modified time | relevance | path

Searched refs:now (Results 1 – 25 of 39) sorted by relevance

12

/dalvik/vm/jdwp/
DJdwpMain.cpp412 struct timespec now; in dvmJdwpGetNowMsec() local
413 clock_gettime(CLOCK_MONOTONIC, &now); in dvmJdwpGetNowMsec()
414 return now.tv_sec * 1000LL + now.tv_nsec / 1000000LL; in dvmJdwpGetNowMsec()
416 struct timeval now; in dvmJdwpGetNowMsec()
417 gettimeofday(&now, NULL); in dvmJdwpGetNowMsec()
418 return now.tv_sec * 1000LL + now.tv_usec / 1000LL; in dvmJdwpGetNowMsec()
444 s8 now = dvmJdwpGetNowMsec(); in dvmJdwpLastDebuggerActivity() local
445 assert(now >= last); in dvmJdwpLastDebuggerActivity()
447 ALOGV("+++ debugger interval=%lld", now - last); in dvmJdwpLastDebuggerActivity()
448 return now - last; in dvmJdwpLastDebuggerActivity()
/dalvik/vm/
DMisc.cpp449 struct timespec now; in dvmGetRelativeTimeNsec() local
450 clock_gettime(CLOCK_MONOTONIC, &now); in dvmGetRelativeTimeNsec()
451 return (u8)now.tv_sec*1000000000LL + now.tv_nsec; in dvmGetRelativeTimeNsec()
453 struct timeval now; in dvmGetRelativeTimeNsec()
454 gettimeofday(&now, NULL); in dvmGetRelativeTimeNsec()
455 return (u8)now.tv_sec*1000000000LL + now.tv_usec * 1000LL; in dvmGetRelativeTimeNsec()
467 struct timespec now; in dvmGetThreadCpuTimeNsec() local
468 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &now); in dvmGetThreadCpuTimeNsec()
469 return (u8)now.tv_sec*1000000000LL + now.tv_nsec; in dvmGetThreadCpuTimeNsec()
486 struct timespec now; in dvmGetOtherThreadCpuTimeNsec()
[all …]
DSignalCatcher.cpp109 time_t now = time(NULL); in logThreadStacks() local
113 ptm = localtime_r(&now, &tmbuf); in logThreadStacks()
115 ptm = localtime(&now); in logThreadStacks()
/dalvik/vm/test/
DAtomicTest.cpp73 struct timespec now; in getRelativeTimeNsec() local
74 clock_gettime(CLOCK_MONOTONIC, &now); in getRelativeTimeNsec()
75 return (int64_t) now.tv_sec*1000000000LL + now.tv_nsec; in getRelativeTimeNsec()
77 struct timeval now; in getRelativeTimeNsec()
78 gettimeofday(&now, NULL); in getRelativeTimeNsec()
79 return (int64_t) now.tv_sec*1000000000LL + now.tv_usec * 1000LL; in getRelativeTimeNsec()
DTestIndirectRefTable.cpp36 start_ = now(); in reset()
40 return (now() - start_) * 0.000001f; in elapsedSeconds()
46 static u8 now() { in now() function in Stopwatch
/dalvik/tests/046-reflect/
Dexpected.txt42 string1 value is now 'a new string'
55 superInt value is now 20202
56 superInt value (from short) is now 30303
57 superInt value is now 40404
85 cantTouchThis is now 77
86 cantTouchThis is now 88
/dalvik/vm/interp/
DREADME.txt3 The "mterp" directory now holds the interpreter implementation.
/dalvik/tests/030-bad-finalizer/
Dexpected.txt5 Finalizer sleeping forever now.
/dalvik/vm/hprof/
DHprofOutput.cpp94 struct timeval now; in hprofContextInit() local
111 if (gettimeofday(&now, NULL) < 0) { in hprofContextInit()
114 nowMs = (u8)now.tv_sec * 1000 + now.tv_usec / 1000; in hprofContextInit()
/dalvik/vm/alloc/
DDdmHeap.cpp59 struct timeval now; in dvmDdmSendHeapInfo() local
89 if (gettimeofday(&now, NULL) < 0) { in dvmDdmSendHeapInfo()
92 nowMs = (u8)now.tv_sec * 1000 + now.tv_usec / 1000; in dvmDdmSendHeapInfo()
/dalvik/vm/mterp/x86/
DOP_MUL_LONG_2ADDR.S29 leal (%ecx,rIBASE),rIBASE # full result now in %edx:%eax
DOP_MUL_LONG.S30 leal (%ecx,rIBASE),rIBASE # full result now in rIBASE:%eax
DOP_INVOKE_DIRECT.S28 je .L${opcode}_resolve # not resolved, do it now
/dalvik/vm/mterp/mips/
DOP_SGET.S28 EXPORT_PC() # resolve() could throw, so export now
DOP_SPUT.S26 EXPORT_PC() # resolve() may throw, so export now
DOP_SGET_WIDE.S28 EXPORT_PC() # resolve() could throw, so export now
DOP_SPUT_OBJECT.S26 EXPORT_PC() # resolve() may throw, so export now
DOP_SPUT_WIDE.S44 EXPORT_PC() # resolve() could throw, so export now
/dalvik/vm/mterp/armv5te/
DOP_INVOKE_DIRECT.S27 beq .L${opcode}_resolve @ not resolved, do it now
DOP_SGET.S38 EXPORT_PC() @ resolve() could throw, so export now
DOP_SPUT.S39 EXPORT_PC() @ resolve() could throw, so export now
DOP_SGET_WIDE.S43 EXPORT_PC() @ resolve() could throw, so export now
DOP_SPUT_WIDE.S44 EXPORT_PC() @ resolve() could throw, so export now
DOP_SPUT_OBJECT.S46 EXPORT_PC() @ resolve() could throw, so export now
/dalvik/vm/native/
Ddalvik_system_VMDebug.cpp506 struct timespec now; in Dalvik_dalvik_system_VMDebug_threadCpuTimeNanos() local
507 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &now); in Dalvik_dalvik_system_VMDebug_threadCpuTimeNanos()
508 result = (jlong) (now.tv_sec*1000000000LL + now.tv_nsec); in Dalvik_dalvik_system_VMDebug_threadCpuTimeNanos()

12