HomeSort by relevance Sort by last modified time
    Searched defs:stime (Results 1 - 10 of 10) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/timer/wince/
SDL_systimer.c 49 SYSTEMTIME stime; local
51 GetSystemTime(&stime);
52 SystemTimeToFileTime(&stime,&ftime.ftime);
  /dalvik/vm/
Misc.h 304 unsigned long stime; /* number of jiffies scheduled in kernel mode */ member in struct:ProcStatData
  /system/core/toolbox/
ps.c 44 unsigned utime, stime; local
98 stime = atoi(nexttok(&ptr));
101 nexttok(&ptr); // stime
165 printf(" (u:%d, s:%d)", utime, stime);
top.c 45 long unsigned utime, ntime, stime, itime; member in struct:cpu_info
62 long unsigned stime; member in struct:proc_info
241 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &new_cpu.utime, &new_cpu.ntime, &new_cpu.stime,
346 &proc->state, &proc->utime, &proc->stime, &proc->vss, &proc->rss, &proc->prs);
425 new_procs[i]->delta_stime = new_procs[i]->stime - old_proc->stime;
434 total_delta_time = (new_cpu.utime + new_cpu.ntime + new_cpu.stime + new_cpu.itime
436 - (old_cpu.utime + old_cpu.ntime + old_cpu.stime + old_cpu.itime
444 ((new_cpu.stime ) - (old_cpu.stime)) * 100 / total_delta_time
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleThread.java 138 * (4b) stime
161 int threadId, status, tid, utime, stime; local
168 stime = data.getInt();
174 + ", utime=" + utime + ", stime=" + stime);
179 threadInfo.updateThread(status, tid, utime, stime, isDaemon);
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 178 long stime = System.currentTimeMillis(); local
188 assertTrue("Failed to sleep long enough", (ftime - stime) >= 500);
189 assertTrue("Failed to wake up early enough", (ftime - stime) <= 1500);
225 long stime = System.currentTimeMillis(); local
235 assertTrue("Failed to sleep long enough", (ftime - stime) >= 500);
236 assertTrue("Failed to wake up early enough", (ftime - stime) <= 1500);
  /external/strace/
defs.h 279 struct timeval stime; /* System time usage as of last process wait */ member in struct:tcb
strace.c 763 tcp->stime.tv_sec = 0;
764 tcp->stime.tv_usec = 0;
1843 struct timeval stime; local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 822 long stime = 0, ftime = 0; local
824 stime = System.currentTimeMillis();
830 assertTrue("Failed to sleep long enough", (ftime - stime) >= 800);
840 long stime = 0, ftime = 0; local
842 stime = System.currentTimeMillis();
848 long result = ftime - stime;
  /external/kernel-headers/original/linux/
sched.h 432 cputime_t utime, stime, cutime, cstime; member in struct:signal_struct
439 * from jiffies_to_ns(utime + stime) if sched_clock uses something
846 cputime_t utime, stime; member in struct:task_struct
970 clock_t acct_stimexpd; /* clock_t-converted stime since last update */
    [all...]

Completed in 309 milliseconds