/external/ltrace/sysdeps/linux-gnu/ |
trace.c | 209 struct pid_task * task_info = &pids->tasks[pids->count++]; local 210 memset(task_info, 0, sizeof(*task_info)); 211 task_info->pid = pid; 212 return task_info; 245 struct pid_task *task_info = get_task_info(pids, task->pid); local 246 if (task_info != NULL 247 && task_info->vforked) 277 struct pid_task *task_info = get_task_info(pids, task->pid); local 278 if (task_info == NULL 729 struct pid_task *task_info = get_task_info(&self->pids, task->pid); local 955 struct pid_task *task_info = get_task_info(&self->pids, task->pid); local [all...] |
/external/chromium_org/base/process/ |
process_metrics_ios.cc | 15 kern_return_t kr = task_info(mach_task_self(),
|
process_metrics_mac.cc | 43 kern_return_t kr = task_info(task, 238 kern_return_t kr = task_info(task, 293 kern_return_t kr = task_info(task,
|
/external/chromium_org/third_party/skia/bench/ |
BenchSysTimer_mach.cpp | 23 if (KERN_SUCCESS != task_info(task,
|
/external/skia/tools/timer/ |
SysTimer_mach.cpp | 18 if (KERN_SUCCESS != task_info(task,
|
/external/chromium_org/chrome/browser/media_galleries/win/ |
mtp_device_delegate_impl_win.h | 115 // call-and-reply to a blocking pool thread. |task_info.task| runs on a 116 // blocking pool thread and |task_info.reply| runs on the IO thread. 118 // If the device is already initialized, post the |task_info.task| 121 // If the device is uninitialized, store the |task_info| in a pending task 124 void EnsureInitAndRunTask(const PendingTaskInfo& task_info);
|
mtp_device_delegate_impl_win.cc | 471 const PendingTaskInfo& task_info) { 477 task_info.location, 478 task_info.task, 479 task_info.reply); 484 pending_tasks_.push(task_info); 515 const PendingTaskInfo& task_info = pending_tasks_.front(); local 518 task_info.location, 519 task_info.task, 520 task_info.reply);
|
/external/chromium_org/chrome/browser/media_galleries/linux/ |
mtp_device_delegate_impl_linux.h | 81 // call-and-reply to the UI thread. |task_info.task| runs on the UI thread. 83 // If the device is already initialized, post the |task_info.task| immediately 86 // If the device is uninitialized, store the |task_info| in a pending task 89 void EnsureInitAndRunTask(const PendingTaskInfo& task_info);
|
mtp_device_delegate_impl_linux.cc | 323 const PendingTaskInfo& task_info) { 328 task_info.location, 329 task_info.task); 332 pending_tasks_.push(task_info); 378 const PendingTaskInfo& task_info = pending_tasks_.front(); local 380 task_info.location, 381 task_info.task);
|
/external/lldb/tools/lldb-perf/lib/ |
Metric.h | 15 #include <mach/task_info.h>
|
MemoryGauge.h | 16 #include <mach/task_info.h>
|
MemoryGauge.cpp | 107 auto task_info_ret = task_info(task, MACH_TASK_BASIC_INFO, (task_info_t) & taskBasicInfo, &count);
|
/external/lldb/tools/debugserver/source/MacOSX/ |
MachVMMemory.cpp | 43 kr = task_info (task, TASK_VM_INFO, (task_info_t) &vm_info, &info_count); 46 DNBLogThreadedIf(LOG_TASK, "MachVMMemory::PageSize task_info returned page size of 0x%x", (int) vm_info.page_size); 52 DNBLogThreadedIf(LOG_TASK, "MachVMMemory::PageSize task_info call failed to get page size, TASK_VM_INFO %d, TASK_VM_INFO_COUNT %d, kern return %d", TASK_VM_INFO, TASK_VM_INFO_COUNT, kr); 246 kr = task_info(task, TASK_VM_INFO_PURGEABLE, (task_info_t)&vm_info, &info_count); 248 kr = task_info(task, TASK_VM_INFO, (task_info_t)&vm_info, &info_count); 491 kr = task_info(task, TASK_VM_INFO_PURGEABLE, (task_info_t)&vm_info, &info_count); 493 kr = task_info(task, TASK_VM_INFO, (task_info_t)&vm_info, &info_count);
|
MachTask.cpp | 91 struct task_basic_info task_info; local 97 err = BasicInfo(task, &task_info); 104 if (task_info.suspend_count > 0) 324 struct task_basic_info task_info; local 326 err = BasicInfo(task, &task_info); 338 TIME_VALUE_TO_TIMEVAL(&task_info.user_time, ¤t_used_time); 339 TIME_VALUE_TO_TIMEVAL(&task_info.system_time, &tv); 369 if (m_vm_memory.GetMemoryProfile(scanType, task, task_info, m_process->GetCPUType(), m_process->ProcessID(), vm_stats, physical_memory, rprvt, rsize, vprvt, vsize, dirty_size, purgeable, anonymous)) 533 err = ::task_info (task, TASK_BASIC_INFO, (task_info_t)info, &count); 536 err.LogThreaded("::task_info ( target_task = 0x%4.4x, flavor = TASK_BASIC_INFO, task_info_out => %p, task_info_outCnt => %u )", (…) 573 struct task_basic_info task_info; local [all...] |
/external/chromium_org/third_party/webrtc/base/ |
cpumonitor.cc | 322 if (KERN_SUCCESS != task_info(mach_task_self(), TASK_THREAD_TIMES_INFO, 325 LOG(LS_ERROR) << "::task_info(TASK_THREAD_TIMES_INFO) failed"; 332 if (KERN_SUCCESS != task_info(mach_task_self(), TASK_BASIC_INFO, 335 LOG(LS_ERROR) << "::task_info(TASK_BASIC_INFO) failed";
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
cpumonitor.cc | 339 if (KERN_SUCCESS != task_info(mach_task_self(), TASK_THREAD_TIMES_INFO, 342 LOG(LS_ERROR) << "::task_info(TASK_THREAD_TIMES_INFO) failed"; 349 if (KERN_SUCCESS != task_info(mach_task_self(), TASK_BASIC_INFO, 352 LOG(LS_ERROR) << "::task_info(TASK_BASIC_INFO) failed";
|
/external/lldb/tools/darwin-threads/ |
examine-threads.c | 5 #include <mach/task_info.h> 366 kr = task_info (task, TASK_BASIC_INFO, (task_info_t) &info, &info_count); 369 printf ("Error - unable to call task_info.\n");
|