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

12345678

/freebsd-10.1-release/contrib/ntp/sntp/unity/auto/
H A Dcolour_prompt.rb42 when :black then 0
43 when :dark_blue then 1
44 when :dark_green then 2
45 when :dark_cyan then 3
46 when :dark_red then 4
47 when :dark_purple then 5
48 when :dark_yellow, :narrative then 6
49 when :default_white, :default, :dark_white then 7
50 when :silver then 8
51 when
[all...]
H A Dcolour_reporter.rb19 when /(?:total\s+)?tests:?\s+(\d+)\s+(?:total\s+)?failures:?\s+\d+\s+Ignored:?/i
21 when /PASS/
23 when /^OK$/
25 when /(?:FAIL|ERROR)/
27 when /IGNORE/
29 when /^(?:Creating|Compiling|Linking)/
H A Dgenerate_module.rb16 #help text when requested
84 when /^-d/ then @destroy = true
85 when /^-u/ then @update_svn = true
86 when /^-p(\w+)/ then @pattern = $1
87 when /^-s(.+)/ then @path_src = $1
88 when /^-i(.+)/ then @path_inc = $1
89 when /^-t(.+)/ then @path_tst = $1
90 when /^-y(.+)/ then @yaml_config = $1
91 when /^(\w+)/
94 when /
[all...]
H A Dunity_test_summary.rb102 when 'IGNORE' then results[:ignores] << line_out
103 when 'FAIL' then results[:failures] << line_out
104 when 'PASS' then results[:successes] << line_out
H A Dgenerate_test_runner.rb16 when NilClass then @options
17 when String then @options.merge!(UnityTestRunnerGenerator.grab_config(options))
18 when Hash then @options.merge!(options)
361 when '-cexception'
363 when /\.*\.ya?ml/
366 when /\.*\.h/
368 when /--(\w+)=\"?(.*)\"?/
/freebsd-10.1-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.1-release/contrib/ntp/lib/isc/
H A Dtimer_p.h26 isc__timermgr_nextevent(isc_timermgr_t *timermgr, isc_time_t *when);
/freebsd-10.1-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.1-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.1-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.1-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.1-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.1-release/share/mk/
H A Dbsd.port.mk7 # and setting MK_* variables when building ports.
/freebsd-10.1-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.1-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.1-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.1-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.1-release/contrib/ntp/ntpd/
H A Dntp_leapsec.h47 * second, and no client actions are needed when crossing the leap era
75 * 'ebase' is the nominal UTC time when the current leap era
78 * time when the next leap era starts.)
87 * 'warped' is set only once, when the the leap second occurred between
198 extern int/*BOOL*/ leapsec_expired(uint32_t when, const time_t * pivot);
204 extern int32_t leapsec_daystolive(uint32_t when, const time_t * pivot);
/freebsd-10.1-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.1-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.1-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.1-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.1-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.

Completed in 188 milliseconds

12345678