Searched refs:task_cpu (Results 1 - 4 of 4) sorted by relevance

/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc118 int task_cpu; local
119 GetTaskStats(t->GetTid(), &native_thread_state, &utime, &stime, &task_cpu);
/art/runtime/
H A Dutils.h213 void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu);
H A Dutils.cc983 void GetTaskStats(pid_t tid, char* state, int* utime, int* stime, int* task_cpu) { argument
984 *utime = *stime = *task_cpu = 0;
997 *task_cpu = strtoull(fields[36].c_str(), nullptr, 10);
H A Dthread.cc989 int task_cpu = 0; local
990 GetTaskStats(tid, &native_thread_state, &utime, &stime, &task_cpu);
996 << " core=" << task_cpu

Completed in 95 milliseconds