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

/freebsd-11-stable/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_killable.h47 sigset_t blocked, oldset; local
48 siginitsetinv(&blocked, SHUTDOWN_SIGS);
49 sigprocmask(SIG_SETMASK, &blocked, &oldset);
61 sigset_t blocked, oldset; local
62 siginitsetinv(&blocked, SHUTDOWN_SIGS);
63 sigprocmask(SIG_SETMASK, &blocked, &oldset);
/freebsd-11-stable/contrib/blacklist/bin/
H A Dblacklistctl.c79 int all, blocked, remain, wide, noheader; local
82 noheader = wide = blocked = all = remain = 0;
95 blocked = 0;
98 blocked = 1;
132 if (blocked) {
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dapp.c56 static isc_boolean_t blocked = ISC_FALSE; variable
194 if (want_shutdown && blocked)
248 REQUIRE(!blocked);
250 blocked = ISC_TRUE;
257 REQUIRE(blocked);
258 blocked = ISC_FALSE;
/freebsd-11-stable/contrib/ntp/lib/isc/unix/
H A Dapp.c135 isc_boolean_t blocked; member in struct:isc__appctx
263 ctx->blocked = ISC_FALSE;
337 * blocked by default, ensuring that only the thread that calls
362 * SIGINT and SIGTERM are not inherited as blocked from the parent
631 * for signals. Signals are blocked, so any such signal will simply
688 if (ctx->want_shutdown && ctx->blocked)
841 REQUIRE(!isc_g_appctx.blocked);
843 isc_g_appctx.blocked = ISC_TRUE;
860 REQUIRE(isc_g_appctx.blocked);
862 isc_g_appctx.blocked
[all...]
/freebsd-11-stable/sys/gnu/dev/bwn/phy_n/
H A Dif_bwn_phy_n_core.h176 extern void bwn_nphy_op_software_rfkill(struct bwn_mac *mac, bool blocked);
/freebsd-11-stable/sys/dev/sfxge/
H A Dsfxge_tx.h198 int blocked __aligned(CACHE_LINE_SIZE);
H A Dsfxge_tx.c252 if (txq->blocked) {
345 KASSERT(!txq->blocked, ("txq->blocked"));
383 txq->blocked = 1;
387 * the queue blocked.
394 txq->blocked = 0;
414 KASSERT(!txq->blocked, ("txq->blocked"));
583 if (txq->blocked)
610 KASSERT(txq->blocked || std
[all...]
/freebsd-11-stable/contrib/diff/src/
H A Dsdiff.c638 sigset_t blocked;
646 sigemptyset (&blocked);
647 sigaddset (&blocked, SIGINT);
648 sigaddset (&blocked, SIGPIPE);
649 sigprocmask (SIG_BLOCK, &blocked, &procmask);
1219 sigset_t blocked;
1221 sigemptyset (&blocked);
1222 sigaddset (&blocked, SIGINT);
1223 sigprocmask (SIG_BLOCK, &blocked, &procmask);
636 sigset_t blocked; local
1214 sigset_t blocked; local
/freebsd-11-stable/sys/dev/cyapa/
H A Dcyapa.c193 int blocked; member in struct:cyapa_softc
327 if (sc->blocked || sc->isselect) {
328 if (sc->blocked) {
329 sc->blocked = 0;
330 wakeup(&sc->blocked);
738 sc->blocked = 1;
739 error = mtx_sleep(&sc->blocked, &sc->mutex, PCATCH, "cyablk", 0);
/freebsd-11-stable/sbin/init/
H A Dinit.c1799 int block, blocked; local
1803 len = sizeof(blocked);
1805 if (sysctlbyname("kern.suspend_blocked", &blocked, &len,
1807 blocked = 0;
1820 /* Unblock suspend if we blocked it. */
1821 if (!blocked)
1823 &blocked, sizeof(blocked));
/freebsd-11-stable/sys/netinet6/
H A Dudp6_usrreq.c339 int blocked; local
348 blocked = im6o_mc_filter(imo, ifp,
351 if (blocked != MCAST_PASS) {
352 if (blocked == MCAST_NOTGMEMBER)
354 if (blocked == MCAST_NOTSMEMBER ||
355 blocked == MCAST_MUTED)
H A Draw_ip6.c234 int blocked; local
236 blocked = MCAST_PASS;
245 blocked = im6o_mc_filter(in6p->in6p_moptions,
250 if (blocked != MCAST_PASS) {
/freebsd-11-stable/contrib/gdb/gdb/
H A Dlin-lwp.c291 /* Make sure SIGCHLD is blocked. We don't want SIGCHLD events
850 sigset_t blocked, ignored;
853 linux_proc_pending_signals (pid, pending, &blocked, &ignored);
861 || sigismember (&blocked, i)
880 sigset_t pending, intersection, blocked, ignored;
1213 /* Make sure SIGCHLD is blocked. */
842 sigset_t blocked, ignored; local
872 sigset_t pending, intersection, blocked, ignored; local
/freebsd-11-stable/sys/netinet/
H A Draw_ip.c377 int blocked; local
379 blocked = MCAST_PASS;
388 blocked = imo_multi_filter(inp->inp_moptions,
394 if (blocked != MCAST_PASS) {
H A Dudp_usrreq.c552 int blocked; local
562 blocked = imo_multi_filter(imo, ifp,
565 if (blocked != MCAST_PASS) {
566 if (blocked == MCAST_NOTGMEMBER)
568 if (blocked == MCAST_NOTSMEMBER ||
569 blocked == MCAST_MUTED)
/freebsd-11-stable/sys/dev/cesa/
H A Dcesa.c1320 int blocked; local
1396 blocked = sc->sc_blocked;
1400 if (blocked)
1401 crypto_unblock(sc->sc_cid, blocked);
/freebsd-11-stable/sys/opencrypto/
H A Dcrypto.c125 int cc_qblocked; /* (q) symmetric q blocked */
126 int cc_kqblocked; /* (q) asymmetric q blocked */
838 * driver unless the driver is currently blocked.
906 struct cryptocap *cap, *best, *blocked; local
919 blocked = NULL;
998 * NB: cap is !NULL if device is blocked; in
1345 * driver ``blocked'' for cryptop's and put
1385 * driver ``blocked'' for cryptkop's and put
1410 * and some become blocked while others do not.
/freebsd-11-stable/sys/amd64/vmm/amd/
H A Dsvm.c1076 int blocked; local
1078 blocked = svm_get_intercept(sc, vcpu, VMCB_CTRL1_INTCPT,
1080 return (blocked);
1087 KASSERT(!nmi_blocked(sc, vcpu), ("vNMI already blocked"));
/freebsd-11-stable/sys/xen/interface/
H A Ddomctl.h88 /* Currently blocked pending an event. */
262 uint8_t blocked; /* blocked waiting for an event? */ member in struct:xen_domctl_getvcpuinfo
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/unicode/
H A Du8_textprep.c1030 * The blocked() function checks on the combining class values of previous
1031 * characters in this sequence and return whether it is blocked or not.
1034 blocked(uchar_t *comb_class, size_t last) function
1212 * is a non-Starter and not blocked, then, we try once
1235 if (blocked(comb_class, i + 1))
/freebsd-11-stable/contrib/ipfilter/tools/
H A Dipf_y.y347 block: blocked
348 | blocked blockreturn
351 blocked: label
/freebsd-11-stable/sys/dev/mlx4/mlx4_en/
H A Den.h621 volatile int blocked; member in struct:mlx4_en_priv
H A Dmlx4_en_netdev.c1576 if (priv->blocked == 0 || priv->port_up == 0)
/freebsd-11-stable/sys/dev/e1000/
H A De1000_ich8lan.c341 * inaccessible and resetting the PHY is not blocked, toggle the
376 DEBUGOUT("Required LANPHYPC toggle blocked by ME\n");
409 ERROR_REPORT("Reset blocked by ME\n");
430 ERROR_REPORT("ME blocked access to PHY after reset\n");
2196 * e1000_check_reset_block_ich8lan - Check if PHY reset is blocked
2206 bool blocked = FALSE; local
2214 blocked = TRUE;
2218 blocked = FALSE;
2219 } while (blocked && (i++ < 30));
2220 return blocked
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A DdrmP.h439 wait_queue_head_t lock_queue; /**< Queue of blocked processes */
656 int blocked; /**< Blocked due to VC switch? */ member in struct:drm_master

Completed in 260 milliseconds