Searched refs:when (Results 1 - 25 of 156) sorted by relevance

1234567

/freebsd-10.0-release/contrib/subversion/subversion/include/
H A Dsvn_time.h41 /** Convert @a when to a <tt>const char *</tt> representation allocated
46 svn_time_to_cstring(apr_time_t when,
49 /** Convert @a data to an @c apr_time_t @a when.
53 svn_time_from_cstring(apr_time_t *when,
57 /** Convert @a when to a <tt>const char *</tt> representation allocated
61 svn_time_to_human_cstring(apr_time_t when,
/freebsd-10.0-release/contrib/ncurses/misc/
H A Dchkdef.cmd52 * `cmp' is zero when the file is valid
80 when (new_code = '') | (new_name = '') then
86 when codes.new_name \= 0 then
93 when names.new_code \= '' then
H A Dmakedef.cmd44 * returns 1 when the old def_file is corrupted -- that is, export items are
130 when new_name = '' then
132 when names.last = new_name then
137 when new_code = 0 then
171 * This is needed, at least, when `makedef.cmd' starts, because an aborted
/freebsd-10.0-release/sys/cddl/dev/cyclic/
H A Dcyclic_test.c56 cyc_time_t when; local
64 when.cyt_when = 0;
65 when.cyt_interval = 1000000000;
71 id = cyclic_add(&hdlr, &when);
163 cyc_time_t when; local
173 when.cyt_when = 0;
179 when.cyt_interval = 200000000;
181 id = cyclic_add(&hdlr, &when);
183 when.cyt_interval = 400000000;
185 id1 = cyclic_add(&hdlr, &when);
[all...]
H A Dcyclic.c356 * allows the caller to reprogram the backend only when the root has been
669 cyc_time_t *when = arg->cyx_when; local
693 cyclic->cy_interval = when->cyt_interval;
695 if (when->cyt_when == 0) {
703 cyclic->cy_expire = when->cyt_when;
726 cyc_time_t *when, uint16_t flags)
734 ASSERT(when->cyt_when >= 0 && when->cyt_interval > 0);
752 arg.cyx_when = when;
779 * will be used when th
725 cyclic_add_here(cyc_cpu_t *cpu, cyc_handler_t *hdlr, cyc_time_t *when, uint16_t flags) argument
856 cyclic_remove_here(cyc_cpu_t *cpu, cyc_index_t ndx, cyc_time_t *when, int wait) argument
948 cyc_time_t when; local
1118 cyclic_add(cyc_handler_t *hdlr, cyc_time_t *when) argument
[all...]
/freebsd-10.0-release/tools/regression/usr.bin/env/
H A Dregress-sb.rb245 when /^--rgdata=(\S+)$/
247 when /^--testpgm=(\S+)$/
250 when "--stop-on-error", "--stop_on_error"
252 when /^--/
255 when /^-/
260 when "v"
354 when "$?"
360 when "clearenv"
366 when "sb_args"
368 when "scrip
[all...]
/freebsd-10.0-release/usr.sbin/fifolog/lib/
H A Dlibfifolog.h40 typedef void fifolog_reader_render_t(void *priv, time_t when, unsigned flag, const unsigned char *p, unsigned l);
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dtime.c90 svn_time_to_cstring(apr_time_t when, apr_pool_t *pool)
104 apr_time_exp_gmt(&exploded_time, when);
135 svn_time_from_cstring(apr_time_t *when, const char *data, apr_pool_t *pool)
167 apr_err = apr_time_exp_gmt_get(when, &exploded_time);
198 apr_err = apr_time_exp_gmt_get(when, &exploded_time);
211 svn_time_to_human_cstring(apr_time_t when, apr_pool_t *pool)
219 ret = apr_time_exp_lt(&exploded_time, when);
88 svn_time_to_cstring(apr_time_t when, apr_pool_t *pool) argument
133 svn_time_from_cstring(apr_time_t *when, const char *data, apr_pool_t *pool) argument
209 svn_time_to_human_cstring(apr_time_t when, apr_pool_t *pool) argument
/freebsd-10.0-release/contrib/ntp/sntp/
H A Dmain.c26 the timing when writing to the terminal (because of line buffered output from
27 C); it is useful only when debugging the source. Note that the times produced
233 double dispersion, weight, when, offset, error; member in struct:__anon3852
402 when this is clearly misguided, except possibly for the setting of LI. It
693 double weight, disp, when, offset, error, drift, drifterr, local
701 record[i].when += correction;
706 record[index].when = *a_when;
709 fprintf(stderr,"%s: corr=%.3f when=%.3f disp=%.3f off=%.3f",
743 disp = weight = when = offset = y = 0.0;
746 when
903 handle_saving(int operation, int *total, int *index, int *cycle, data_record *record, double *previous, double *when, double *correction) argument
913 double previous, when, correction; member in struct:__anon3853
1090 double previous, when, correction = 0.0, offset = 0.0, error = -1.0, local
1127 double history[COUNT_MAX], started, previous, when, correction = 0.0, local
[all...]
H A Dsntp-opts.def74 produce a diagnostic. This option should be set when there is a
87 be set when the program fails with a message indicating that is the
99 when writing to the terminal (because of line buffered output from C).
101 not the error in the local clock. This option should be set only when
152 diagnostic. This option should be set when there is a suspected problem with
157 with apparently inconsistent timestamps. This option should be set when the
162 when writing to the terminal (because of line buffered output from C). Note
164 in the local clock. This option should be set only when debugging the source.
309 network or server inaccessibility or excessively slow performance, or when the
/freebsd-10.0-release/share/mk/
H A Dbsd.port.mk7 # and setting MK_* variables when building ports.
H A Datf.test.mk14 # Only visit subdirs when building, etc because ATF does this it on its own.
/freebsd-10.0-release/contrib/gdb/gdb/
H A Devent-loop.c69 handler_func *proc; /* Procedure to call when fd is ready. */
76 /* PROC is a function to be invoked when the READY flag is set. This
77 happens when there has been a signal and the corresponding signal
171 struct timeval when; member in struct:gdb_timer
260 associated to FD when it was registered with the event loop. */
391 an event and then processes it. >0 when an event is processed, 0
392 when catch_errors() caught an error and <0 when there are no
480 PROC is the procedure that will be called when an event occurs for
892 be used when th
[all...]
/freebsd-10.0-release/sys/netgraph/
H A Dng_pipe.c68 struct timeval when; /* this packet's due time */ member in struct:ngp_hdr
602 * Shortcut from inbound to outbound hook when neither of
636 struct timeval *when = &hinfo->qin_utime; local
637 if (when->tv_sec < now->tv_sec || (when->tv_sec == now->tv_sec
638 && when->tv_usec < now->tv_usec)) {
639 when->tv_sec = now->tv_sec;
640 when->tv_usec = now->tv_usec;
768 struct timeval *when; local
780 when
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Dprofile.c334 profile_online(void *arg, cpu_t *cpu, cyc_handler_t *hdlr, cyc_time_t *when) argument
346 when->cyt_interval = prof->prof_interval;
347 when->cyt_when = dtrace_gethrtime() + when->cyt_interval;
349 pcpu->profc_expected = when->cyt_when;
350 pcpu->profc_interval = when->cyt_interval;
370 cyc_time_t when; local
380 when.cyt_interval = prof->prof_interval;
381 when.cyt_when = dtrace_gethrtime() + when
[all...]
/freebsd-10.0-release/sys/cddl/dev/profile/
H A Dprofile.c408 profile_online(void *arg, cpu_t *cpu, cyc_handler_t *hdlr, cyc_time_t *when) argument
419 when->cyt_interval = prof->prof_interval;
420 when->cyt_when = gethrtime() + when->cyt_interval;
422 pcpu->profc_expected = when->cyt_when;
423 pcpu->profc_interval = when->cyt_interval;
443 cyc_time_t when; local
452 when.cyt_interval = prof->prof_interval;
453 when.cyt_when = gethrtime() + when
[all...]
/freebsd-10.0-release/contrib/ipfilter/lib/
H A Dsave_v1trap.c299 maketrap_v1(community, buffer, bufsize, msg, msglen, ipaddr, when)
306 time_t when;
379 s[0] = when >> 24;
380 s[1] = when >> 16;
381 s[2] = when >> 8;
382 s[3] = when & 0xff;
446 sendtrap_v1_0(fd, community, msg, msglen, when)
450 time_t when;
457 (u_char *)msg, msglen, 0, when);
/freebsd-10.0-release/sbin/dhclient/
H A Ddispatch.c168 if (timeouts->when <= cur_time) {
183 howlong = timeouts->when - cur_time;
351 add_timeout(time_t when, void (*where)(void *), void *what) argument
385 q->when = when;
390 if (!timeouts || timeouts->when > q->when) {
398 if (t->next->when > q->when) {
/freebsd-10.0-release/sys/boot/common/
H A Dboot.c161 time_t when, otime, ntime; local
194 when = otime + timeout; /* when to boot */
223 if (ntime >= when) {
230 kernelname, (int)(when - ntime),
231 (when-ntime)==1?"":"s");
/freebsd-10.0-release/contrib/groff/contrib/mm/
H A DNOTES14 This file is read when the macro is executed. Therefore it must be
18 limits due to that it don't know when the cover starts, and cannot
/freebsd-10.0-release/contrib/bmake/mk/
H A Dyacc.mk17 # this file contains rules to DTRT when SRCS contains foo.y or foo.c
18 # when only a foo.y exists.
/freebsd-10.0-release/usr.sbin/faithd/test/
H A Dfaithd.rb125 when /^221 / # result to QUIT
245 when /^-f/
300 when "tcp"
302 when "ftp"
/freebsd-10.0-release/contrib/libbegemot/
H A Drpoll.c48 * There happens to be linuxes which read siginfo.h when including
177 tval_t when; /* next time to trigger in usecs! */ member in struct:__anon1609
406 p->when = GETUSECS() + usecs;
459 return tims[t1].when < tims[t2].when ? -1
460 : tims[t1].when > tims[t2].when ? +1
535 i, tfd[i]->when - now);
538 if((tout = tims[tfd[0]].when - now) < 0)
628 if(tims[tfd[i]].when > no
[all...]
/freebsd-10.0-release/contrib/gcc/config/ia64/
H A Dunwind-ia64.c129 int when; /* when the register gets saved */ member in struct:unw_reg_info
470 int when, unsigned long val)
474 if (reg->when == UNW_WHEN_NEVER)
475 reg->when = when;
505 reg->when = t;
534 /* Next, compute when the fp, general, and branch registers get saved.
757 sr->curr.reg[UNW_REG_PSP].when
798 reg->when
467 set_reg(struct unw_reg_info *reg, enum unw_where where, int when, unsigned long val) argument
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_client/
H A Dcat.c280 apr_time_t when = 0;
286 SVN_ERR(svn_time_from_cstring(&when, cmt_date->data, pool));
290 repos_root_url, when,
278 apr_time_t when = 0; local

Completed in 252 milliseconds

1234567