/dalvik/vm/jdwp/ |
D | JdwpMain.cpp | 412 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/ |
D | Misc.cpp | 449 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 …]
|
D | SignalCatcher.cpp | 109 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/ |
D | AtomicTest.cpp | 73 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()
|
D | TestIndirectRefTable.cpp | 36 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/ |
D | expected.txt | 42 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/ |
D | README.txt | 3 The "mterp" directory now holds the interpreter implementation.
|
/dalvik/tests/030-bad-finalizer/ |
D | expected.txt | 5 Finalizer sleeping forever now.
|
/dalvik/vm/hprof/ |
D | HprofOutput.cpp | 94 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/ |
D | DdmHeap.cpp | 59 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/ |
D | OP_MUL_LONG_2ADDR.S | 29 leal (%ecx,rIBASE),rIBASE # full result now in %edx:%eax
|
D | OP_MUL_LONG.S | 30 leal (%ecx,rIBASE),rIBASE # full result now in rIBASE:%eax
|
D | OP_INVOKE_DIRECT.S | 28 je .L${opcode}_resolve # not resolved, do it now
|
/dalvik/vm/mterp/mips/ |
D | OP_SGET.S | 28 EXPORT_PC() # resolve() could throw, so export now
|
D | OP_SPUT.S | 26 EXPORT_PC() # resolve() may throw, so export now
|
D | OP_SGET_WIDE.S | 28 EXPORT_PC() # resolve() could throw, so export now
|
D | OP_SPUT_OBJECT.S | 26 EXPORT_PC() # resolve() may throw, so export now
|
D | OP_SPUT_WIDE.S | 44 EXPORT_PC() # resolve() could throw, so export now
|
/dalvik/vm/mterp/armv5te/ |
D | OP_INVOKE_DIRECT.S | 27 beq .L${opcode}_resolve @ not resolved, do it now
|
D | OP_SGET.S | 38 EXPORT_PC() @ resolve() could throw, so export now
|
D | OP_SPUT.S | 39 EXPORT_PC() @ resolve() could throw, so export now
|
D | OP_SGET_WIDE.S | 43 EXPORT_PC() @ resolve() could throw, so export now
|
D | OP_SPUT_WIDE.S | 44 EXPORT_PC() @ resolve() could throw, so export now
|
D | OP_SPUT_OBJECT.S | 46 EXPORT_PC() @ resolve() could throw, so export now
|
/dalvik/vm/native/ |
D | dalvik_system_VMDebug.cpp | 506 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()
|