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

/external/lldb/tools/debugserver/source/MacOSX/
H A DMachTask.cpp371 std::ostringstream profile_data_stream; local
375 profile_data_stream << "num_cpu:" << numCPU << ';';
376 profile_data_stream << "host_user_ticks:" << host_info.cpu_ticks[CPU_STATE_USER] << ';';
377 profile_data_stream << "host_sys_ticks:" << host_info.cpu_ticks[CPU_STATE_SYSTEM] << ';';
378 profile_data_stream << "host_idle_ticks:" << host_info.cpu_ticks[CPU_STATE_IDLE] << ';';
383 profile_data_stream << "elapsed_usec:" << elapsed_usec << ';';
384 profile_data_stream << "task_used_usec:" << task_used_usec << ';';
392 profile_data_stream << "thread_used_id:" << std::hex << threads_id[i] << std::dec << ';';
393 profile_data_stream << "thread_used_usec:" << threads_used_usec[i] << ';';
397 profile_data_stream << "thread_used_nam
[all...]

Completed in 188 milliseconds