Home
last modified time | relevance | path

Searched refs:now (Results 1 – 25 of 45) 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 LOGV("+++ 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()
/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.cpp93 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/
DTODO.txt5 additional argument now)
8 (hi) Implement OP_DISPATCH_FF for real. (Right now it's treated as
/dalvik/vm/alloc/
DDdmHeap.cpp58 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/
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_JUMBO.S21 je .L${opcode}_resolve # not resolved, do it now
DOP_INVOKE_DIRECT.S28 je .L${opcode}_resolve # not resolved, do it now
/dalvik/vm/native/
Ddalvik_system_VMDebug.cpp480 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/
DOP_INVOKE_DIRECT_JUMBO.S23 beq .L${opcode}_resolve @ not resolved, do it now
DOP_INVOKE_DIRECT.S27 beq .L${opcode}_resolve @ not resolved, do it now
DOP_SPUT.S39 EXPORT_PC() @ resolve() could throw, so export now
DOP_SGET.S38 EXPORT_PC() @ resolve() could throw, so export now
DOP_SPUT_JUMBO.S42 EXPORT_PC() @ resolve() could throw, so export now
DOP_SGET_JUMBO.S41 EXPORT_PC() @ resolve() could throw, so export now
DOP_SGET_WIDE.S43 EXPORT_PC() @ resolve() could throw, so export now
DOP_SGET_WIDE_JUMBO.S41 EXPORT_PC() @ resolve() could throw, so export now
DOP_SPUT_WIDE.S44 EXPORT_PC() @ resolve() could throw, so export now
DOP_SPUT_OBJECT_JUMBO.S46 EXPORT_PC() @ resolve() could throw, so export now

12