Searched refs:sigs (Results 1 - 20 of 20) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/xz/
H A Dsignals.c52 static const int sigs[] = { local
71 for (size_t i = 0; i < ARRAY_SIZE(sigs); ++i)
72 sigaddset(&hooked_signals, sigs[i]);
92 for (size_t i = 0; i < ARRAY_SIZE(sigs); ++i) {
96 if (sigaction(sigs[i], NULL, &old) == 0
101 if (sigaction(sigs[i], &sa, NULL))
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/xz/
H A Dsignals.c52 static const int sigs[] = { local
71 for (size_t i = 0; i < ARRAY_SIZE(sigs); ++i)
72 sigaddset(&hooked_signals, sigs[i]);
92 for (size_t i = 0; i < ARRAY_SIZE(sigs); ++i) {
96 if (sigaction(sigs[i], NULL, &old) == 0
101 if (sigaction(sigs[i], &sa, NULL))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dmain.c252 sigset_t sigs; local
308 sv.sa_handler = afp_goaway; /* handler for all sigs */
379 sigemptyset(&sigs);
380 sigaddset(&sigs, SIGALRM);
381 sigaddset(&sigs, SIGHUP);
382 sigaddset(&sigs, SIGUSR1);
385 sigaddset(&sigs, SIGTERM);
387 sigaddset(&sigs, SIGCHLD);
389 pthread_sigmask(SIG_BLOCK, &sigs, NULL);
394 pthread_sigmask(SIG_UNBLOCK, &sigs, NUL
[all...]
H A Dafp_dsi.c88 sigset_t sigs; local
108 /* Block sigs, PAM/systemd/whoever might send us a SIG??? in (*obj->logout)() -> pam_close_session() */
109 sigfillset(&sigs);
110 pthread_sigmask(SIG_BLOCK, &sigs, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/util/
H A Dserver_child.c384 sigset_t sigs; local
398 sigemptyset(&sigs);
399 sigaddset(&sigs, SIGALRM);
400 sigaddset(&sigs, SIGHUP);
401 sigaddset(&sigs, SIGUSR1);
402 sigaddset(&sigs, SIGCHLD);
403 pthread_sigmask(SIG_UNBLOCK, &sigs, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/serial/
H A Dmcf.c56 unsigned int sigs; /* Local copy of line sigs */ member in struct:mcf_uart
73 unsigned int sigs; local
75 sigs = (readb(port->membase + MCFUART_UIPR) & MCFUART_UIPR_CTS) ?
77 sigs |= (pp->sigs & TIOCM_RTS);
78 sigs |= (mcf_getppdcd(port->line) ? TIOCM_CD : 0);
79 sigs |= (mcf_getppdtr(port->line) ? TIOCM_DTR : 0);
81 return sigs;
86 static void mcf_set_mctrl(struct uart_port *port, unsigned int sigs) argument
[all...]
H A Daltera_uart.c79 unsigned int sigs; /* Local copy of line sigs */ member in struct:altera_uart
92 unsigned int sigs; local
94 sigs =
97 sigs |= (pp->sigs & TIOCM_RTS);
99 return sigs;
102 static void altera_uart_set_mctrl(struct uart_port *port, unsigned int sigs) argument
106 pp->sigs = sigs;
[all...]
H A Daltera_jtaguart.c61 unsigned int sigs; /* Local copy of line sigs */ member in struct:altera_jtaguart
76 static void altera_jtaguart_set_mctrl(struct uart_port *port, unsigned int sigs) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/drivers/
H A Dchan_user.c148 sigset_t sigs; local
167 sigfillset(&sigs);
169 if (sigprocmask(SIG_SETMASK, &sigs, NULL) < 0) {
175 sigdelset(&sigs, SIGWINCH);
211 sigsuspend(&sigs);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/src/
H A Dgcryptrnd.c619 sigset_t sigs;
630 sigemptyset (&sigs);
631 sigaddset (&sigs, SIGHUP);
632 sigaddset (&sigs, SIGUSR1);
633 sigaddset (&sigs, SIGUSR2);
634 sigaddset (&sigs, SIGINT);
635 sigaddset (&sigs, SIGTERM);
636 ev = pth_event (PTH_EVENT_SIGS, &sigs, &signo);
618 sigset_t sigs; local
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/src/
H A Dgcryptrnd.c619 sigset_t sigs;
630 sigemptyset (&sigs);
631 sigaddset (&sigs, SIGHUP);
632 sigaddset (&sigs, SIGUSR1);
633 sigaddset (&sigs, SIGUSR2);
634 sigaddset (&sigs, SIGINT);
635 sigaddset (&sigs, SIGTERM);
636 ev = pth_event (PTH_EVENT_SIGS, &sigs, &signo);
618 sigset_t sigs; local
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dstallion.h86 unsigned int sigs; member in struct:stlport
H A Distallion.h72 unsigned long sigs; member in struct:stliport
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/forked-daapd-0.19/src/
H A Dmain.c448 sigset_t sigs; local
612 sigemptyset(&sigs);
613 sigaddset(&sigs, SIGINT);
614 sigaddset(&sigs, SIGHUP);
615 sigaddset(&sigs, SIGCHLD);
616 sigaddset(&sigs, SIGTERM);
617 sigaddset(&sigs, SIGPIPE);
618 ret = pthread_sigmask(SIG_BLOCK, &sigs, NULL);
733 sigfd = signalfd(-1, &sigs, SFD_NONBLOCK | SFD_CLOEXEC);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dstallion.c617 unsigned int oldsigs = portp->sigs;
623 portp->sigs = stl_getsignals(portp);
625 if ((portp->sigs & TIOCM_CD) && ((oldsigs & TIOCM_CD) == 0))
628 if ((oldsigs & TIOCM_CD) && ((portp->sigs & TIOCM_CD) == 0))
716 portp->sigs = stl_getsignals(portp);
767 return (portp->sigs & TIOCM_CD) ? 1 : 0;
1341 int sigs; local
1357 sigs = stl_getsignals(portp);
1359 if (sigs & TIOCM_RTS) {
1363 if (sigs
2918 int sigs; local
3860 int sigs; local
[all...]
H A Distallion.c921 portp->sigs = stli_mktiocm(portp->asig.sigvalue);
1127 return (portp->sigs & TIOCM_CD) ? 1 : 0;
2211 oldsigs = portp->sigs;
2212 portp->sigs = stli_mktiocm(nt.sigvalue);
2214 if ((portp->sigs & TIOCM_CD) &&
2218 ((portp->sigs & TIOCM_CD) == 0)) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/pptpd/pptpd-1.3.4/
H A Dpptpctrl.c662 sigset_t sigs; local
784 sigfillset(&sigs);
785 sigprocmask(SIG_UNBLOCK, &sigs, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dmicrocode_intel.c119 struct extended_signature sigs[0]; member in struct:extended_sigtable
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/ssl/
H A Dt1_lib.c3761 const unsigned char *sigs = NULL; local
3763 sigs = c->conf_sigalgs;
3765 sigs = c->client_sigalgs;
3766 if (sigs) {
3767 idx = tls12_get_pkey_idx(sigs[1]);
3768 md = tls12_get_hash(sigs[0]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/
H A Dt1_lib.c3761 const unsigned char *sigs = NULL; local
3763 sigs = c->conf_sigalgs;
3765 sigs = c->client_sigalgs;
3766 if (sigs) {
3767 idx = tls12_get_pkey_idx(sigs[1]);
3768 md = tls12_get_hash(sigs[0]);

Completed in 297 milliseconds