| /src/usr.bin/ktruss/ | 
| makeerrnos.sh | 46 struct systab signals[] = { 87 extern struct systab signals[$elines + 1];
 
 | 
| dump.c | 566 			xwprintf("(%s", signals[(int)*ap].name); 
 | 
| /src/usr.bin/timeout/ | 
| timeout.c | 196 	struct sigaction signals;  local in function:main 265 	memset(&signals, 0, sizeof(signals));
 266 	sigemptyset(&signals.sa_mask);
 272 		sigaddset(&signals.sa_mask, signums[i]);
 274 	signals.sa_handler = sig_handler;
 275 	signals.sa_flags = SA_RESTART;
 279 		    sigaction(signums[i], &signals, NULL) == -1)
 298 	if (sigprocmask(SIG_BLOCK, &signals.sa_mask, NULL) == -1)
 305 		sigemptyset(&signals.sa_mask)
 [all...]
 | 
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ | 
| intel_breadcrumbs.c | 100 	if (!list_is_last(&rq->signal_link, &ce->signals) && 105 	if (!list_is_first(&rq->signal_link, &ce->signals) &&
 170 		GEM_BUG_ON(list_empty(&ce->signals));
 172 		list_for_each_safe(pos, next, &ce->signals) {
 202 		if (!list_is_first(pos, &ce->signals)) {
 204 			__list_del_many(&ce->signals, pos);
 205 			if (&ce->signals == pos) { /* now empty */
 328 		list_for_each_prev(pos, &ce->signals) {
 336 		if (pos == &ce->signals) /* catch transitions from empty list */
 365 		if (list_empty(&ce->signals))
 [all...]
 | 
| intel_context_types.h | 54 	struct list_head signals;  member in struct:intel_context 
 | 
| intel_context.c | 293 	INIT_LIST_HEAD(&ce->signals); 
 | 
| /src/tests/lib/libc/sys/ | 
| t_sigqueue.c | 97 static int signals[] = {  variable in typeref:typename:int[] 102 #define CNT	__arraycount(signals)
 104 #define CNT	(sizeof(signals) / sizeof(signals[0]))
 125  * given a array of signals to be delivered in tosend of size len
 126  * place in ordered the signals to be delivered in delivery order
 127  * and return the number of signals that should be delivered
 155 	atf_tc_set_md_var(tc, "descr", "Test queuing of real-time signals");
 167 	ndelivered = sigorder(ordered, signals, CNT);
 181 		if (sigaddset(&mask, signals[i]) == -1
 [all...]
 | 
| /src/lib/libc/compat/arch/sparc/sys/ | 
| compat_sigprocmask.S | 59 !	clr	%o1		! else block no signals ... 
 | 
| /src/tests/fs/puffs/ | 
| t_basic.c | 394 ATF_TC(signals); 395 ATF_TC_HEAD(signals, tc)
 405 ATF_TC_BODY(signals, tc)
 452 	ATF_TP_ADD_TC(tp, signals);
 
 | 
| /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ | 
| imx6qdl-dhcom-drc02.dtsi | 14  * pins SD3_DAT0 and SD3_DAT1 are muxed as can2 Tx and Rx. The signals for can2 72 	 * Due to the use of can2 the signals for can2 Tx and Rx are routed to
 
 | 
| vf610-zii-dev-rev-c.dts | 273 	 * Exposed signals: 287 	 * Exposed signals:
 321 	 * Exposed signals:
 
 | 
| ste-href-stuib.dtsi | 185 					 * reset signals low. 
 | 
| imx7d-flex-concentrator.dts | 99  * Analog signals 174  * Detection signals for internal USB modules.
 
 | 
| rk3288-veyron.dtsi | 65 		 * correspond to one of these signals on the module: 246 			 * make it easier to follow the schematic.  The signals
 
 | 
| armada-385-clearfog-gtr.dtsi | 50 	47 - Control isolation of boot sensitive SAR signals 
 | 
| armada-385-turris-omnia.dts | 366 				 * GPIO expander for SFP+ signals and 
 | 
| integratorcp.dts | 304 			 * The signals from the port thus reaches two endpoints. 
 | 
| meson8b-ec100.dts | 82 			 * the output to LOW signals the EC to start a 
 | 
| versatile-ab.dts | 283 			 * The signals from the port thus reaches two endpoints. 
 | 
| imx6qdl-dhcom-som.dtsi | 89  * pins SD3_DAT0 and SD3_DAT1 are muxed as can2 Tx and Rx. The signals for can2 
 | 
| /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/marvell/ | 
| armada-3720-espressobin.dtsi | 131  *   how to enable it. Beware that the signals are 1.8V TTL. 
 | 
| /src/usr.bin/vndcompress/ | 
| vndcompress.c | 277 init_signal_handler(int flags, const struct sigdesc *signals, size_t n, 286 		(void)sigaddset(&sa.sa_mask, signals[i].sd_signo);
 290 		if (sigaction(signals[i].sd_signo, &sa, NULL) == -1)
 291 			err(1, "sigaction(%s)", signals[i].sd_name);
 
 | 
| /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/rockchip/ | 
| rk3399-gru-kevin.dts | 16  * equivalent exists in Gru schematic.  If referring to signals that exist 
 | 
| rk3399-puma.dtsi | 367  * signals are not used. Furthermore I2S0_LRCK_RX is used as GPIO. 
 | 
| /src/lib/libc/time/ | 
| zic.c | 857   static int const signals[] = {  local in function:catch_signals 868   for (i = 0; i < sizeof signals / sizeof signals[0]; i++) {
 874     if (sigaction(signals[i], &act, &act0) == 0
 876       sigaction(signals[i], &act0, NULL);
 880     if (signal(signals[i], signal_handler) == SIG_IGN) {
 881       signal(signals[i], SIG_IGN);
 
 |