Searched defs:task_cpu (Results 1 - 3 of 3) sorted by relevance

/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc121 int task_cpu; local
122 GetTaskStats(t->GetTid(), &native_thread_state, &utime, &stime, &task_cpu);
/art/runtime/
H A Dutils.cc1023 void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu) { argument
1024 *utime = *stime = *task_cpu = 0;
1037 *task_cpu = strtoull(fields[36].c_str(), NULL, 10);
H A Dthread.cc836 int task_cpu = 0; local
837 GetTaskStats(tid, &native_thread_state, &utime, &stime, &task_cpu);
843 << " core=" << task_cpu

Completed in 102 milliseconds