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

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ThreadInfo.java 52 void updateThread(int status, int tid, int utime, int stime, boolean isDaemon) {
57 mStime = stime;
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);
  /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);
  /system/core/toolbox/
top.c 45 long unsigned utime, ntime, stime, itime; member in struct:cpu_info
62 long unsigned stime; member in struct:proc_info
240 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &new_cpu.utime, &new_cpu.ntime, &new_cpu.stime,
344 &proc->state, &proc->utime, &proc->stime, &proc->vss, &proc->rss);
423 new_procs[i]->delta_stime = new_procs[i]->stime - old_proc->stime;
432 total_delta_time = (new_cpu.utime + new_cpu.ntime + new_cpu.stime + new_cpu.itime
434 - (old_cpu.utime + old_cpu.ntime + old_cpu.stime + old_cpu.itime
442 ((new_cpu.stime ) - (old_cpu.stime)) * 100 / total_delta_time
    [all...]
ps.c 43 unsigned utime, stime; local
97 stime = atoi(nexttok(&ptr));
100 nexttok(&ptr); // stime
162 printf(" (u:%d, s:%d)", utime, stime);
  /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);
  /packages/experimental/procstatlog/
procstatreport.py 181 stime = sum([int(next[x]) - int(last[x]) for x in [2, 5, 6]])
184 all = stime + utime + idle
185 total_sys += stime
188 sys_jiffies[when] = (stime, all)
189 sys_user_jiffies[when] = (stime + utime, all)
322 stime = int(next[14]) - int(last[14])
324 process_sys.setdefault(pid, {})[when] = (stime, all)
325 process_sys_user.setdefault(pid, {})[when] = (stime + utime, all)
  /dalvik/vm/
Ddm.c 380 unsigned long flags, minflt, cminflt, majflt, cmajflt, utime, stime;
393 &flags, &minflt, &cminflt, &majflt, &cmajflt, &utime, &stime,
449 LOGI("Warning: strtoul failed on stime ('%.30s...')\n", cp);
468 * (4b) stime
507 unsigned long utime, stime; local
510 if (!getThreadStats(pid, thread->systemTid, &utime, &stime)) {
512 utime = stime = 0;
525 set4BE(buf+13, stime);
  /external/strace/
strace.c 763 tcp->stime.tv_sec = 0;
764 tcp->stime.tv_usec = 0;
1843 struct timeval stime; local
    [all...]
defs.h 279 struct timeval stime; /* System time usage as of last process wait */ member in struct:tcb
  /frameworks/base/services/java/com/android/server/
ProcessStats.java 55 PROC_SPACE_TERM|PROC_OUT_LONG // 14: stime
83 PROC_SPACE_TERM|PROC_OUT_LONG, // 14: stime
374 final long stime = procStats[PROCESS_STAT_STIME];
376 if (utime == st.base_utime && stime == st.base_stime) {
401 + " stime=" + stime + "-" + st.base_stime
408 st.rel_stime = (int)(stime - st.base_stime);
410 st.base_stime = stime;
472 + " utime=" + st.base_utime + " stime=" + st.base_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...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java     [all...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 443 milliseconds