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

12345678910

/freebsd-current/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-current/crypto/openssl/VMS/
H A Dtest-includes.com2 $! on VMS, even when the VMS macro isn't defined.
/freebsd-current/contrib/kyua/utils/signals/
H A Dtimer.hpp58 /// subclasses, when the timeout given at construction expires.
75 const utils::datetime::timestamp& when(void) const;
H A Dtimer.cpp124 timers_set& timers = _all_timers[timer->when()];
141 timer->when());
243 _timer_activation(timer->when())
245 PRE(now < timer->when());
249 const datetime::delta delta = timer->when() - now;
251 timer->when() % now);
257 _timer_activation = timer->when();
315 LD(F("Unprogramming timer; previously firing on %s") % timer->when());
384 /// Timestamp when this timer is expected to fire.
389 datetime::timestamp when; member in struct:utils::signals::timer::impl
467 signals::timer::when(void) const function in class:signals::timer
[all...]
/freebsd-current/tools/regression/usr.bin/env/
H A Dregress-sb.rb244 when /^--rgdata=(\S+)$/
246 when /^--testpgm=(\S+)$/
249 when "--stop-on-error", "--stop_on_error"
251 when /^--/
254 when /^-/
259 when "v"
354 when "$?"
360 when "clearenv"
366 when "sb_args"
368 when "scrip
[all...]
/freebsd-current/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-current/contrib/bmake/unit-tests/
H A Dvarmisc.exp2 :D expanded when var set
5 :U expanded when var undef
10 :U skipped when var set
12 :? only lhs when value true
15 :? only rhs when value false
H A Ddeptgt-error.mk4 # is made when another target fails.
H A Dvarmisc.mk23 @echo :U skipped when var set
31 @echo :U expanded when var undef
35 @echo :D expanded when var set
39 @echo :? only lhs when value true
43 @echo :? only rhs when value false
172 # Before that, it had complained about unclosed variables only when
173 # parsing the modifiers, but not when parsing the variable name.
H A Ddirective-for-lines.mk8 # lines, even when collecting the lines for the .for loop body.
/freebsd-current/share/mk/
H A Dsrc.init.linux.mk2 # This only gets included during DIRDEPS_BUILD when MACHINE is "host"
H A Dbsd.port.mk18 # and setting MK_* variables when building ports.
H A Ddirdeps-options.mk41 # Either way, we will .undef DIRDEPS.* when done.
47 # Because Makefile.depend.options are processed at both level 0 (when
48 # computing DIRDEPS to build) and higher (when updating
63 # :U below avoids potential errors when we :=
/freebsd-current/contrib/kyua/store/
H A Dlayout.cpp109 /// \param when Timestamp to attach to the identifier.
113 new_id(const std::string& test_suite, const datetime::timestamp& when) argument
115 const std::string when_datetime = when.strftime("%Y%m%d-%H%M%S");
116 const int when_ms = static_cast<int>(when.to_microseconds() % 1000000);
206 /// \param when Timestamp for the test suite being run; needed to properly
213 const datetime::timestamp& when)
215 const std::string generated_id = new_id(test_suite_for_path(root), when);
212 new_db_for_migration(const fs::path& root, const datetime::timestamp& when) argument
/freebsd-current/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_mac.cpp121 INTERCEPTOR(void, dispatch_after_f, dispatch_time_t when, dispatch_queue_t dq, argument
124 return REAL(dispatch_after_f)(when, dq, (void *)lsan_ctxt,
140 void dispatch_after(dispatch_time_t when, dispatch_queue_t queue,
167 INTERCEPTOR(void, dispatch_after, dispatch_time_t when, dispatch_queue_t queue, argument
170 REAL(dispatch_after)(when, queue, lsan_block);
/freebsd-current/sys/netgraph/
H A Dng_pipe.c68 struct timeval when; /* this packet's due time */ member in struct:ngp_hdr
601 * Shortcut from inbound to outbound hook when neither of
635 struct timeval *when = &hinfo->qin_utime; local
636 if (when->tv_sec < now->tv_sec || (when->tv_sec == now->tv_sec
637 && when->tv_usec < now->tv_usec)) {
638 when->tv_sec = now->tv_sec;
639 when->tv_usec = now->tv_usec;
743 struct timeval *when; local
755 when
[all...]
/freebsd-current/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
199 extern int/*BOOL*/ leapsec_expired(uint32_t when, const time_t * pivot);
205 extern int32_t leapsec_daystolive(uint32_t when, const time_t * pivot);
/freebsd-current/sbin/ipf/libipf/
H A Dsave_v1trap.c290 int msglen, u_32_t ipaddr, time_t when)
363 s[0] = when >> 24;
364 s[1] = when >> 16;
365 s[2] = when >> 8;
366 s[3] = when & 0xff;
430 sendtrap_v1_0(int fd, char *community, char *msg, int msglen, time_t when) argument
437 (u_char *)msg, msglen, 0, when);
289 maketrap_v1(char *community, u_char *buffer, int bufsize, u_char *msg, int msglen, u_32_t ipaddr, time_t when) argument
/freebsd-current/sbin/dhclient/
H A Ddispatch.c176 if (timeouts->when <= cur_time) {
191 howlong = timeouts->when - cur_time;
359 add_timeout(time_t when, void (*where)(void *), void *what) argument
393 q->when = when;
398 if (!timeouts || timeouts->when > q->when) {
406 if (t->next->when > q->when) {
/freebsd-current/stand/common/
H A Dboot.c174 time_t when, otime, ntime; local
208 when = ntime + timeout; /* when to boot */
237 if (ntime >= when) {
244 kernelname, (int)(when - ntime),
245 (when-ntime)==1?"":"s");
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_mac.cpp220 INTERCEPTOR(void, dispatch_after_f, dispatch_time_t when, argument
229 return REAL(dispatch_after_f)(when, dq, (void*)asan_ctxt,
252 void dispatch_after(dispatch_time_t when, dispatch_queue_t queue,
285 dispatch_time_t when, dispatch_queue_t queue, void(^work)(void)) {
288 REAL(dispatch_after)(when, queue, asan_block);
284 INTERCEPTOR(void, dispatch_after, dispatch_time_t when, dispatch_queue_t queue, void(^work)(void)) argument

Completed in 255 milliseconds

12345678910