Searched refs:nsa (Results 1 - 19 of 19) sorted by relevance

/freebsd-9.3-release/lib/libedit/
H A Dsig.c160 struct sigaction osa, nsa; local
162 nsa.sa_handler = sig_handler;
163 nsa.sa_flags = 0;
164 sigemptyset(&nsa.sa_mask);
170 if (sigaction(sighdl[i], &nsa, &osa) != -1 &&
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dforward.c92 isc_sockaddr_t *sa, *nsa; local
105 nsa = isc_mem_get(fwdtable->mctx, sizeof(isc_sockaddr_t));
106 if (nsa == NULL) {
110 *nsa = *sa;
111 ISC_LINK_INIT(nsa, link);
112 ISC_LIST_APPEND(forwarders->addrs, nsa, link);
/freebsd-9.3-release/sys/compat/linux/
H A Dlinux_signal.c146 struct sigaction act, oact, *nsa, *osa; local
154 nsa = &act;
155 linux_to_bsd_sigaction(linux_nsa, nsa);
157 nsa = NULL;
164 error = kern_sigaction(td, sig, nsa, osa, 0);
178 l_sigaction_t nsa, osa; local
187 nsa.lsa_handler = args->handler;
188 nsa.lsa_flags = LINUX_SA_ONESHOT | LINUX_SA_NOMASK;
189 LINUX_SIGEMPTYSET(nsa.lsa_mask);
191 error = linux_do_sigaction(td, args->sig, &nsa,
200 l_sigaction_t nsa, osa; local
[all...]
/freebsd-9.3-release/sys/ufs/ffs/
H A Dffs_rawread.c276 caddr_t sa, nsa, tsa; local
300 nsa = NULL;
321 nsa = nbp->b_data;
333 nsa);
380 sa = nsa;
381 nsa = tsa;
397 nsa);
/freebsd-9.3-release/usr.sbin/apmd/
H A Dapmd.c580 struct sigaction nsa; local
591 memset(&nsa, 0, sizeof nsa);
592 nsa.sa_handler = enque_signal;
593 sigfillset(&nsa.sa_mask);
594 nsa.sa_flags = SA_RESTART;
595 sigaction(SIGHUP, &nsa, NULL);
596 sigaction(SIGCHLD, &nsa, NULL);
597 sigaction(SIGTERM, &nsa, NULL);
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-esp.c145 struct sa_list *nsa; local
147 nsa = (struct sa_list *)malloc(sizeof(struct sa_list));
148 if (nsa == NULL)
151 *nsa = *sa;
154 ndo->ndo_sa_default = nsa;
156 nsa->next = ndo->ndo_sa_list_head;
157 ndo->ndo_sa_list_head = nsa;
/freebsd-9.3-release/sys/amd64/linux32/
H A Dlinux32_machdep.c710 args->sig, (void *)args->nsa, (void *)args->osa);
713 if (args->nsa != NULL) {
714 error = copyin(args->nsa, &osa, sizeof(l_osigaction_t));
724 error = linux_do_sigaction(td, args->sig, args->nsa ? &act : NULL,
H A Dlinux32_systrace_args.c433 uarg[1] = (intptr_t) p->nsa; /* l_osigaction_t * */
H A Dlinux32_proto.h205 char nsa_l_[PADL_(l_osigaction_t *)]; l_osigaction_t * nsa; char nsa_r_[PADR_(l_osigaction_t *)]; member in struct:linux_sigaction_args
/freebsd-9.3-release/sys/i386/linux/
H A Dlinux_machdep.c691 args->sig, (void *)args->nsa, (void *)args->osa);
694 if (args->nsa != NULL) {
695 error = copyin(args->nsa, &osa, sizeof(l_osigaction_t));
705 error = linux_do_sigaction(td, args->sig, args->nsa ? &act : NULL,
H A Dlinux_systrace_args.c441 uarg[1] = (intptr_t) p->nsa; /* l_osigaction_t * */
H A Dlinux_proto.h209 char nsa_l_[PADL_(l_osigaction_t *)]; l_osigaction_t * nsa; char nsa_r_[PADR_(l_osigaction_t *)]; member in struct:linux_sigaction_args
/freebsd-9.3-release/sys/compat/svr4/
H A Dsvr4_signal.c277 if (uap->nsa != NULL) {
278 if ((error = copyin(uap->nsa, &isa, sizeof(isa))) != 0)
H A Dsvr4_proto.h193 char nsa_l_[PADL_(struct svr4_sigaction *)]; struct svr4_sigaction * nsa; char nsa_r_[PADR_(struct svr4_sigaction *)]; member in struct:svr4_sys_sigaction_args
/freebsd-9.3-release/contrib/tcsh/
H A Dsh.proc.c1750 struct sigaction osa, nsa; local
1771 nsa.sa_handler = synch_handler;
1772 sigfillset(&nsa.sa_mask);
1773 nsa.sa_flags = SA_RESTART;
1774 if (sigaction(SIGSYNCH, &nsa, &osa))
/freebsd-9.3-release/sys/kern/
H A Dkern_sig.c840 struct osigaction *nsa; member in struct:osigaction_args
850 struct sigaction nsa, osa; local
857 nsap = (uap->nsa != NULL) ? &nsa : NULL;
861 error = copyin(uap->nsa, &sa, sizeof(sa));
1338 struct sigaction nsa, osa; local
1344 nsap = (uap->nsv != NULL) ? &nsa : NULL;
/freebsd-9.3-release/sys/compat/freebsd32/
H A Dfreebsd32_misc.c2076 if (uap->nsa) {
2077 error = copyin(uap->nsa, &s32, sizeof(s32));
H A Dfreebsd32_proto.h823 char nsa_l_[PADL_(struct osigaction32 *)]; struct osigaction32 * nsa; char nsa_r_[PADR_(struct osigaction32 *)]; member in struct:ofreebsd32_sigaction_args
/freebsd-9.3-release/sys/sys/
H A Dsysproto.h2164 char nsa_l_[PADL_(struct osigaction *)]; struct osigaction * nsa; char nsa_r_[PADR_(struct osigaction *)]; member in struct:osigaction_args

Completed in 233 milliseconds