| /freebsd-14-stable/sys/contrib/vchiq/interface/vchiq_arm/ |
| HD | vchiq_killable.h | 47 sigset_t blocked, oldset; in down_interruptible_killable() local 48 siginitsetinv(&blocked, SHUTDOWN_SIGS); in down_interruptible_killable() 49 sigprocmask(SIG_SETMASK, &blocked, &oldset); in down_interruptible_killable() 61 sigset_t blocked, oldset; in mutex_lock_interruptible_killable() local 62 siginitsetinv(&blocked, SHUTDOWN_SIGS); in mutex_lock_interruptible_killable() 63 sigprocmask(SIG_SETMASK, &blocked, &oldset); in mutex_lock_interruptible_killable()
|
| /freebsd-14-stable/contrib/blocklist/bin/ |
| HD | blacklistctl.c | 88 int all, blocked, remain, wide, noheader; in main() local 91 noheader = wide = blocked = all = remain = 0; in main() 104 blocked = 0; in main() 107 blocked = 1; in main() 141 if (blocked) { in main()
|
| /freebsd-14-stable/contrib/wpa/src/drivers/ |
| HD | rfkill.c | 50 int blocked; member 93 if (new_blocked != rfkill->blocked) { in rfkill_receive() 94 rfkill->blocked = new_blocked; in rfkill_receive() 177 rfkill->blocked = 1; in rfkill_init() 180 rfkill->blocked = 1; in rfkill_init() 223 return rfkill->blocked; in rfkill_is_blocked()
|
| /freebsd-14-stable/sys/contrib/openzfs/module/os/linux/spl/ |
| HD | spl-condvar.c | 200 sigset_t blocked, saved; in __cv_wait_idle() local 202 sigfillset(&blocked); in __cv_wait_idle() 203 (void) sigprocmask(SIG_BLOCK, &blocked, &saved); in __cv_wait_idle() 302 sigset_t blocked, saved; in __cv_timedwait_idle() local 305 sigfillset(&blocked); in __cv_timedwait_idle() 306 (void) sigprocmask(SIG_BLOCK, &blocked, &saved); in __cv_timedwait_idle() 415 sigset_t blocked, saved; in cv_timedwait_idle_hires() local 418 sigfillset(&blocked); in cv_timedwait_idle_hires() 419 (void) sigprocmask(SIG_BLOCK, &blocked, &saved); in cv_timedwait_idle_hires()
|
| HD | spl-thread.c | 168 sigorsets(&set, ¤t->blocked, &set);
|
| /freebsd-14-stable/sys/contrib/dev/mediatek/mt76/ |
| HD | tx.c | 450 return q->stopped || q->blocked || in mt76_txq_stopped() 726 void __mt76_set_tx_blocked(struct mt76_dev *dev, bool blocked) in __mt76_set_tx_blocked() argument 731 if (blocked == q->blocked) in __mt76_set_tx_blocked() 734 q->blocked = blocked; in __mt76_set_tx_blocked() 739 q->blocked = blocked; in __mt76_set_tx_blocked() 744 q->blocked = blocked; in __mt76_set_tx_blocked() 747 if (!blocked) in __mt76_set_tx_blocked() 815 dev->phy.q_tx[0]->blocked) in mt76_token_release()
|
| /freebsd-14-stable/crypto/openssl/crypto/async/ |
| HD | async.c | 50 nctx->blocked = 0; in async_ctx_new() 298 || ctx->blocked) { in ASYNC_pause_job() 468 ctx->blocked++; in ASYNC_block_pause() 485 if (ctx->blocked > 0) in ASYNC_unblock_pause() 486 ctx->blocked--; in ASYNC_unblock_pause()
|
| HD | async_local.h | 36 unsigned int blocked; member
|
| /freebsd-14-stable/contrib/diff/src/ |
| HD | sdiff.c | 636 sigset_t blocked; in main() local 644 sigemptyset (&blocked); in main() 645 sigaddset (&blocked, SIGINT); in main() 646 sigaddset (&blocked, SIGPIPE); in main() 647 sigprocmask (SIG_BLOCK, &blocked, &procmask); in main() 1214 sigset_t blocked; in temporary_file() local 1216 sigemptyset (&blocked); in temporary_file() 1217 sigaddset (&blocked, SIGINT); in temporary_file() 1218 sigprocmask (SIG_BLOCK, &blocked, &procmask); in temporary_file()
|
| /freebsd-14-stable/usr.sbin/bsnmpd/modules/snmp_pf/ |
| HD | BEGEMOT-PF-MIB.txt | 670 "The number of IPv4 bytes blocked coming in on this interface." 686 "The number of IPv4 bytes blocked going out on this interface." 702 "The number of IPv4 packets blocked coming in on this interface." 718 "The number of IPv4 packets blocked going out on this interface." 734 "The number of IPv6 bytes blocked coming in on this interface." 750 "The number of IPv6 bytes blocked going out on this interface." 767 "The number of IPv6 packets blocked coming in on this interface." 783 "The number of IPv6 packets blocked going out on this interface." 921 "The number of bytes blocked coming in matching the table." 947 "The number of bytes blocked going out matching the table." [all …]
|
| /freebsd-14-stable/sys/dev/sfxge/ |
| HD | sfxge_tx.c | 249 if (txq->blocked) { in sfxge_tx_qcomplete() 342 KASSERT(!txq->blocked, ("txq->blocked")); in sfxge_tx_qlist_post() 380 txq->blocked = 1; in sfxge_tx_qlist_post() 391 txq->blocked = 0; in sfxge_tx_qlist_post() 411 KASSERT(!txq->blocked, ("txq->blocked")); in sfxge_tx_queue_mbuf() 580 if (txq->blocked) in sfxge_tx_qdpl_drain() 607 KASSERT(txq->blocked || stdp->std_get_count == 0, in sfxge_tx_qdpl_drain() 627 if (!txq->blocked) in sfxge_tx_qdpl_service() 1446 if (txq->blocked) { in sfxge_tx_qunblock() 1453 txq->blocked = 0; in sfxge_tx_qunblock() [all …]
|
| HD | sfxge_tx.h | 196 int blocked __aligned(CACHE_LINE_SIZE);
|
| /freebsd-14-stable/sys/netinet6/ |
| HD | raw_ip6.c | 277 int blocked; in rip6_input() local 279 blocked = MCAST_PASS; in rip6_input() 288 blocked = im6o_mc_filter(inp->in6p_moptions, in rip6_input() 293 if (blocked != MCAST_PASS) { in rip6_input()
|
| HD | udp6_usrreq.c | 280 int blocked; in udp6_multi_input() local 287 blocked = im6o_mc_filter(imo, m->m_pkthdr.rcvif, in udp6_multi_input() 290 if (blocked != MCAST_PASS) { in udp6_multi_input() 291 if (blocked == MCAST_NOTGMEMBER) in udp6_multi_input() 293 if (blocked == MCAST_NOTSMEMBER || in udp6_multi_input() 294 blocked == MCAST_MUTED) in udp6_multi_input()
|
| /freebsd-14-stable/sbin/init/ |
| HD | init.c | 1876 int block, blocked; in death() local 1880 len = sizeof(blocked); in death() 1882 if (sysctlbyname("kern.suspend_blocked", &blocked, &len, in death() 1884 blocked = 0; in death() 1898 if (!blocked) in death() 1900 &blocked, sizeof(blocked)); in death()
|
| /freebsd-14-stable/tools/test/stress2/misc/ |
| HD | umtx_suspend.sh | 84 // This thread should be blocked in pthread_suspend_np(3).
|
| HD | spin.sh | 111 /* open(2) blocked on "ufs" for minutes */
|
| /freebsd-14-stable/sys/dev/cyapa/ |
| HD | cyapa.c | 202 int blocked; member 336 if (sc->blocked || sc->isselect) { in cyapa_notify() 337 if (sc->blocked) { in cyapa_notify() 338 sc->blocked = 0; in cyapa_notify() 339 wakeup(&sc->blocked); in cyapa_notify() 811 sc->blocked = 1; in cyaparead() 812 error = mtx_sleep(&sc->blocked, &sc->mutex, PCATCH, "cyablk", 0); in cyaparead()
|
| /freebsd-14-stable/sys/netinet/ |
| HD | raw_ip.c | 385 int blocked; in rip_input() local 387 blocked = MCAST_PASS; in rip_input() 396 blocked = imo_multi_filter(inp->inp_moptions, in rip_input() 402 if (blocked != MCAST_PASS) { in rip_input()
|
| HD | udp_usrreq.c | 397 int blocked; in udp_multi_input() local 407 blocked = imo_multi_filter(imo, m->m_pkthdr.rcvif, in udp_multi_input() 410 if (blocked != MCAST_PASS) { in udp_multi_input() 411 if (blocked == MCAST_NOTGMEMBER) in udp_multi_input() 413 if (blocked == MCAST_NOTSMEMBER || in udp_multi_input() 414 blocked == MCAST_MUTED) in udp_multi_input()
|
| /freebsd-14-stable/sys/gnu/dev/bwn/phy_n/ |
| HD | if_bwn_phy_n_core.h | 176 extern void bwn_nphy_op_software_rfkill(struct bwn_mac *mac, bool blocked);
|
| /freebsd-14-stable/contrib/llvm-project/openmp/runtime/src/ |
| HD | exports_so.txt | 63 # appear in a backtrace of a thread which is blocked in the RTL.
|
| /freebsd-14-stable/sys/dev/safexcel/ |
| HD | safexcel.c | 169 uint32_t blocked, error, i, nrdescs, nreqs; in safexcel_rdr_intr() local 171 blocked = 0; in safexcel_rdr_intr() 242 blocked = ring->blocked; in safexcel_rdr_intr() 243 ring->blocked = 0; in safexcel_rdr_intr() 253 if (blocked) in safexcel_rdr_intr() 254 crypto_unblock(sc->sc_cid, blocked); in safexcel_rdr_intr() 2543 ring->blocked = CRYPTO_SYMQ; in safexcel_process() 2558 ring->blocked = CRYPTO_SYMQ; in safexcel_process()
|
| /freebsd-14-stable/contrib/tcsh/nls/ukrainian/ |
| HD | set2 | 66 64 Process's lwps are blocked
|
| /freebsd-14-stable/contrib/tcsh/nls/russian/ |
| HD | set2 | 66 64 Process's lwps are blocked
|