Searched refs:idle (Results 1 - 25 of 145) sorted by relevance

123456

/macosx-10.10.1/shell_cmds-179/w/
H A Dpr_time.c88 * Display the idle time.
89 * Returns number of excess characters that were used for long idle time.
92 pr_idle(time_t idle) argument
94 /* If idle more than 36 hours, print as a number of days. */
95 if (idle >= 36 * 3600) {
96 int days = idle / 86400;
104 /* If idle more than an hour, print as HH:MM. */
105 else if (idle >= 3600)
107 (int)(idle / 3600), (int)((idle
[all...]
/macosx-10.10.1/apache-793/httpd/support/
H A Dlog_server_status.in67 my ( $requests, $idle, $number, $cpu );
70 $idle = $1 if (m|^IdleWorkers:\ (\S+)|);
74 print OUT "$time:$requests:$idle:$number:$cpu\n";
/macosx-10.10.1/tcl-105/tcl_ext/bwidget/bwidget/demo/
H A Ddemo_tile.tcl20 after idle Demo::setTheme
/macosx-10.10.1/Security-57031.1.35/securityd/src/
H A Dconnection.cpp52 : mClientPort(rPort), mGuestRef(kSecNoGuest), state(idle), agentWait(NULL)
91 assert(state == idle);
109 case idle:
137 case idle:
171 state = idle;
H A Dconnection.h100 idle, // no thread services us enumerator in enum:Connection::State
/macosx-10.10.1/shell_cmds-179/systime/
H A Dsystime.c36 static kern_return_t get_processor_time(uint64_t *user, uint64_t *sys, uint64_t *idle);
140 " systime [-P] -u user -s sys -i idle\n");
147 uint64_t user, system, idle; local
150 kret = get_processor_time(&user, &system, &idle);
156 printf("systime_idle=%llu\n", idle);
162 uint64_t user, system, idle; local
166 kret = get_processor_time(&user, &system, &idle);
172 idleelapsed = idle - oldidle;
176 fprintf(stderr, "%1.02f%% user %1.02f%% sys %1.02f%% idle\n",
195 get_processor_time(uint64_t *user, uint64_t *sys, uint64_t *idle) argument
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/uev/
H A Duevent_onidle.tcl24 after idle [mymethod RunAction]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/map/
H A Dmap_slippy_fetcher.tcl69 after idle [linsert $donecmd end unset $tile]
112 after idle [linsert $d end unset $tile]
133 after idle [linsert $d end unset $tile]
141 after idle [linsert $d end set $tile $tileimage]
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dgnus-demon.el58 If IDLE is t, only call if Emacs has been idle for a while. If IDLE
59 is a number, only call when Emacs has been idle more than this number
62 time Emacs has been idle for IDLE `gnus-demon-timestep's."
82 (defvar gnus-demon-idle-has-been-called nil)
83 (defvar gnus-demon-idle-time 0)
91 (defun gnus-demon-add-handler (function time idle)
96 (push (list function time idle) gnus-demon-handlers)
121 (setq gnus-demon-idle-time 0)
122 (setq gnus-demon-idle-has-been-called nil)))
132 gnus-demon-idle
[all...]
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dlwdclient.c78 ISC_LIST_INIT(cm->idle);
99 if (ISC_LIST_EMPTY(cm->idle))
120 client = ISC_LIST_HEAD(cm->idle);
122 ISC_LIST_UNLINK(cm->idle, client, link);
124 client = ISC_LIST_HEAD(cm->idle);
146 * run through the idle list and free the clients there. Idle
150 client = ISC_LIST_HEAD(cm->idle);
154 ISC_LIST_UNLINK(cm->idle, client, link);
156 client = ISC_LIST_HEAD(cm->idle);
241 * Go idle
[all...]
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Ddialog2.tcl7 after idle {
H A Ddialog1.tcl7 after idle {.dialog1.msg configure -wraplength 4i}
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Ddialog2.tcl7 after idle {
H A Ddialog1.tcl7 after idle {.dialog1.msg configure -wraplength 4i}
/macosx-10.10.1/shell_cmds-179/who/
H A Dwho.c87 static int show_idle; /* show idle time */
313 time_t idle; local
318 idle = 0;
338 idle = now - sb.st_atime;
370 if (idle < 60)
372 else if (idle < (24 * 60 * 60))
374 (long)(idle / (60 * 60)),
375 (long)(idle % (60 * 60)) / 60);
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Daserver.tcl23 $s play -command "close $sock; set msg idle;$s destroy"
31 set msg idle
71 set ::msg idle
74 set msg idle
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/cache/
H A Dasync.tcl68 after idle [linsert $myprovider end get $key $self]
143 after idle [linsert $donecmd end set $key $value]
161 after idle [linsert $donecmd end unset $key]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/coroutine/
H A Dcoroutine.tcl124 # idle handler to defer it until the trace is definitely
129 ::after idle [info coroutine]
143 ::after idle [info coroutine]
337 # idle handler to defer it until the trace is definitely
342 ::after idle [info coroutine]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/widget/
H A Dwidget.tcl76 after idle [list destroy $w]
99 after idle [list destroy $w]
/macosx-10.10.1/apr-32/apr/apr/misc/unix/
H A Drandbyte_os2.inc59 * idle / busy / interrupt cycle counts which should provide very good
73 ULONG ulIdleLow; /* Low 32 bits of idle time */
74 ULONG ulIdleHigh; /* High 32 bits of idle time */
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/
H A Dtimer.c84 isc_time_t idle; member in struct:isc__timer
242 if (isc_time_isepoch(&timer->idle))
245 due = timer->idle;
246 else if (isc_time_compare(&timer->idle, &timer->expires) < 0)
247 due = timer->idle;
448 result = isc_time_add(&now, interval, &timer->idle);
454 isc_time_settoepoch(&timer->idle);
571 result = isc_time_add(&now, interval, &timer->idle);
573 isc_time_settoepoch(&timer->idle);
629 result = isc_time_add(&now, &timer->interval, &timer->idle);
687 isc_boolean_t idle; local
[all...]
/macosx-10.10.1/ntp-92/lib/isc/
H A Dtimer.c68 isc_time_t idle; member in struct:isc_timer
152 if (isc_time_isepoch(&timer->idle))
155 due = timer->idle;
156 else if (isc_time_compare(&timer->idle, &timer->expires) < 0)
157 due = timer->idle;
352 result = isc_time_add(&now, interval, &timer->idle);
358 isc_time_settoepoch(&timer->idle);
472 result = isc_time_add(&now, interval, &timer->idle);
474 isc_time_settoepoch(&timer->idle);
528 result = isc_time_add(&now, &timer->interval, &timer->idle);
584 isc_boolean_t idle; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/ident/
H A Dident.tcl76 after idle [list $command $result]
/macosx-10.10.1/xnu-2782.1.97/bsd/net/classq/
H A Dclassq_rio.h103 int idle; /* queue was empty */ member in struct:rio::dropprec_state
105 struct timeval last; /* timestamp when queue becomes idle */
113 /* used for idle calibration */
/macosx-10.10.1/tcl-105/tcl_ext/bwidget/bwidget/
H A Dprogressbar.tcl30 {-idle Boolean 0 0}
79 [after idle [list ProgressBar::_modify $path]]
112 [after idle [list ProgressBar::_modify $path]]
125 [after idle [list ProgressBar::_modify $path]]
199 if {![Widget::cget $path -idle]} {

Completed in 230 milliseconds

123456