Searched refs:user_time (Results 1 - 22 of 22) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DProcess.h50 /// This static function will set \p user_time to the amount of CPU time
58 TimeValue& user_time,
/macosx-10.9.5/xnu-2422.115.4/osfmk/mach/
H A Dthread_info.h93 time_value_t user_time; /* user run time */ member in struct:thread_basic_info
H A Dtask_info.h101 time_value_t user_time; /* total user run time for member in struct:task_basic_info_32
117 time_value_t user_time; /* total user run time for member in struct:task_basic_info_64
137 time_value_t user_time; /* total user run time for member in struct:task_basic_info
177 time_value_t user_time; /* total user run time for member in struct:task_thread_times_info
270 time_value_t user_time; /* total user run time for member in struct:mach_task_basic_info
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Unix/
H A DProcess.inc110 Process::GetTimeUsage(TimeValue& elapsed, TimeValue& user_time,
117 user_time = TimeValue(
127 user_time.seconds(0);
128 user_time.microseconds(0);
/macosx-10.9.5/adv_cmds-153/ps/
H A Dprint.c821 total_time = k->tasks_info.user_time;
824 time_value_add(&total_time, &k->times.user_time);
851 time_value_t user_time; local
856 user_time = k->tasks_info.user_time;
857 time_value_add(&user_time, &k->times.user_time);
859 user_time = k->thval[print_thread_num].tb.user_time;
861 user_time
[all...]
/macosx-10.9.5/libauto-185.5/
H A Dauto_impl_utilities.h155 time_value_t user_time;
171 return ((auto_date_t)myinfo.user_time.seconds*(auto_date_t)1000000) + (auto_date_t)myinfo.user_time.microseconds +
H A DStatistics.h105 return (int64_t)myinfo.user_time.seconds*1000000 + (int64_t)myinfo.user_time.microseconds;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Windows/
H A DProcess.inc85 TimeValue& elapsed, TimeValue& user_time, TimeValue& sys_time)
95 user_time.seconds( UserTime / 10000000 );
96 user_time.nanoseconds( unsigned(UserTime % 10000000) * 100 );
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dtask.c2196 basic_info->user_time.seconds =
2197 (typeof(basic_info->user_time.seconds))secs;
2198 basic_info->user_time.microseconds = usecs;
2234 basic_info->user_time.seconds =
2235 (typeof(basic_info->user_time.seconds))secs;
2236 basic_info->user_time.microseconds = usecs;
2279 basic_info->user_time.seconds =
2280 (typeof(basic_info->user_time.seconds))secs;
2281 basic_info->user_time.microseconds = usecs;
2303 times_info->user_time
2310 time_value_t user_time, system_time; local
[all...]
H A Dthread.c1134 thread_read_times(thread, &basic_info->user_time,
1323 time_value_t *user_time,
1335 user_time->seconds = (typeof(user_time->seconds))secs;
1336 user_time->microseconds = usecs;
1345 user_time->seconds = (typeof(user_time->seconds))secs;
1346 user_time->microseconds = usecs;
1321 thread_read_times( thread_t thread, time_value_t *user_time, time_value_t *system_time) argument
H A Ddebug.h50 uint64_t user_time; member in struct:thread_snapshot
H A Dbsd_kern.c699 ptinfo->pth_user_time = ((basic_info.user_time.seconds * (integer_t)NSEC_PER_SEC) + (basic_info.user_time.microseconds * (integer_t)NSEC_PER_USEC));
H A Dtelemetry.c634 thsnap->user_time = timer_grab(&thread->user_timer);
641 thsnap->user_time += tval;
H A Dthread.h801 time_value_t *user_time,
/macosx-10.9.5/zsh-60/zsh/Src/
H A Djobs.c648 double elapsed_time, user_time, system_time; local
669 user_time = ti->ru_utime.tv_sec + ti->ru_utime.tv_usec / 1000000.0;
671 total_time = user_time + system_time;
676 user_time = ti->ut / (double) clktck;
693 fprintf(stderr, "%4.2fs", user_time);
704 printhhmmss(user_time);
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkern_resource.c976 ut.tv_sec = tinfo.user_time.seconds;
977 ut.tv_usec = tinfo.user_time.microseconds;
987 ut.tv_sec = ttimesinfo.user_time.seconds;
988 ut.tv_usec = ttimesinfo.user_time.microseconds;
H A Dkern_exit.c1972 p->p_ru->ru.ru_utime.tv_sec = tinfo.user_time.seconds;
1973 p->p_ru->ru.ru_utime.tv_usec = tinfo.user_time.microseconds;
1981 ut.tv_sec = ttimesinfo.user_time.seconds;
1982 ut.tv_usec = ttimesinfo.user_time.microseconds;
/macosx-10.9.5/xnu-2422.115.4/osfmk/kdp/
H A Dkdp.c1428 tsnap->user_time = tval;
1433 tsnap->user_time += tval;
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/tests/
H A Dtestapi.c1065 double time = info.user_time.seconds + info.user_time.microseconds / 1000000.;
/macosx-10.9.5/top-89.1.2/
H A Dlibtop.c1596 TIME_VALUE_TO_TIMEVAL(&info.user_time, &tv);
1973 TIME_VALUE_TO_TIMEVAL(&ti.user_time, &pinfo->psamp.total_time);
/macosx-10.9.5/ruby-104/ruby/
H A Dgc.c3911 FILETIME creation_time, exit_time, kernel_time, user_time; local
3917 &creation_time, &exit_time, &kernel_time, &user_time) != 0) {
3918 memcpy(&ui, &user_time, sizeof(FILETIME));
/macosx-10.9.5/launchd-842.92.1/src/
H A Dcore.c5380 info.user_time = ri->ri_user_time;

Completed in 239 milliseconds