Home
last modified time | relevance | path

Searched refs:thread_info_data (Results 1 – 4 of 4) sorted by relevance

/external/libchrome/base/time/
Dtime_mac.cc80 thread_basic_info_data_t thread_info_data; in ComputeThreadTicks()
90 reinterpret_cast<thread_info_t>(&thread_info_data), in ComputeThreadTicks()
95 thread_info_data.user_time.seconds + in ComputeThreadTicks()
96 thread_info_data.system_time.seconds); in ComputeThreadTicks()
98 absolute_micros += (thread_info_data.user_time.microseconds + in ComputeThreadTicks()
99 thread_info_data.system_time.microseconds); in ComputeThreadTicks()
/external/libchrome/base/process/
Dprocess_metrics_mac.cc263 task_thread_times_info thread_info_data; in GetCPUUsage() local
267 reinterpret_cast<task_info_t>(&thread_info_data), in GetCPUUsage()
281 TIME_VALUE_TO_TIMEVAL(&thread_info_data.user_time, &user_timeval); in GetCPUUsage()
282 TIME_VALUE_TO_TIMEVAL(&thread_info_data.system_time, &system_timeval); in GetCPUUsage()
/external/webrtc/webrtc/examples/objc/AppRTCDemo/common/
DARDUtilities.m110 thread_basic_info_data_t thread_info_data = {};
116 (thread_info_t)&thread_info_data,
120 100.f * (float)thread_info_data.cpu_usage / TH_USAGE_SCALE;
/external/v8/src/base/platform/
Dtime.cc35 thread_basic_info_data_t thread_info_data; in ComputeThreadTicks() local
39 reinterpret_cast<thread_info_t>(&thread_info_data), in ComputeThreadTicks()
44 thread_info_data.user_time.seconds + in ComputeThreadTicks()
45 thread_info_data.system_time.seconds); in ComputeThreadTicks()
47 absolute_micros += (thread_info_data.user_time.microseconds + in ComputeThreadTicks()
48 thread_info_data.system_time.microseconds); in ComputeThreadTicks()