/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 LOGV("+++ 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()
|
/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 | 93 struct timeval now; in hprofContextInit() local 110 if (gettimeofday(&now, NULL) < 0) { in hprofContextInit() 113 nowMs = (u8)now.tv_sec * 1000 + now.tv_usec / 1000; in hprofContextInit()
|
/dalvik/vm/mterp/x86-atom/ |
D | TODO.txt | 5 additional argument now) 8 (hi) Implement OP_DISPATCH_FF for real. (Right now it's treated as
|
/dalvik/vm/alloc/ |
D | DdmHeap.cpp | 58 struct timeval now; in dvmDdmSendHeapInfo() local 88 if (gettimeofday(&now, NULL) < 0) { in dvmDdmSendHeapInfo() 91 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_JUMBO.S | 21 je .L${opcode}_resolve # not resolved, do it now
|
D | OP_INVOKE_DIRECT.S | 28 je .L${opcode}_resolve # not resolved, do it now
|
/dalvik/vm/native/ |
D | dalvik_system_VMDebug.cpp | 480 struct timespec now; in Dalvik_dalvik_system_VMDebug_threadCpuTimeNanos() local 481 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &now); in Dalvik_dalvik_system_VMDebug_threadCpuTimeNanos() 482 result = (jlong) (now.tv_sec*1000000000LL + now.tv_nsec); in Dalvik_dalvik_system_VMDebug_threadCpuTimeNanos()
|
/dalvik/vm/mterp/armv5te/ |
D | OP_INVOKE_DIRECT_JUMBO.S | 23 beq .L${opcode}_resolve @ not resolved, do it now
|
D | OP_INVOKE_DIRECT.S | 27 beq .L${opcode}_resolve @ not resolved, do it now
|
D | OP_SPUT.S | 39 EXPORT_PC() @ resolve() could throw, so export now
|
D | OP_SGET.S | 38 EXPORT_PC() @ resolve() could throw, so export now
|
D | OP_SPUT_JUMBO.S | 42 EXPORT_PC() @ resolve() could throw, so export now
|
D | OP_SGET_JUMBO.S | 41 EXPORT_PC() @ resolve() could throw, so export now
|
D | OP_SGET_WIDE.S | 43 EXPORT_PC() @ resolve() could throw, so export now
|
D | OP_SGET_WIDE_JUMBO.S | 41 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_JUMBO.S | 46 EXPORT_PC() @ resolve() could throw, so export now
|