Home
last modified time | relevance | path

Searched refs:newmask (Results 1 – 25 of 25) sorted by relevance

/freebsd/lib/libc/rpc/
H A Dclnt_dg.c333 sigset_t newmask; in clnt_dg_call() local
340 sigfillset(&newmask); in clnt_dg_call()
341 thr_sigsetmask(SIG_SETMASK, &newmask, &mask); in clnt_dg_call()
619 sigset_t newmask; in clnt_dg_freeres() local
621 sigfillset(&newmask); in clnt_dg_freeres()
646 sigset_t newmask; in clnt_dg_control() local
648 sigfillset(&newmask); in clnt_dg_control()
784 sigset_t newmask; in clnt_dg_destroy() local
786 sigfillset(&newmask); in clnt_dg_destroy()
811 sigset_t newmask; in clnt_dg_ops() local
[all …]
H A Dclnt_vc.c324 sigset_t mask, newmask; in clnt_vc_call() local
329 sigfillset(&newmask); in clnt_vc_call()
330 thr_sigsetmask(SIG_SETMASK, &newmask, &mask); in clnt_vc_call()
471 sigset_t newmask; in clnt_vc_freeres() local
478 sigfillset(&newmask); in clnt_vc_freeres()
518 sigset_t newmask; in clnt_vc_control() local
524 sigfillset(&newmask); in clnt_vc_control()
631 sigset_t newmask; in clnt_vc_destroy() local
637 sigfillset(&newmask); in clnt_vc_destroy()
751 sigset_t mask, newmask; in clnt_vc_ops() local
[all …]
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dlib_data.c395 _nc_sigprocmask(int how, const sigset_t * newmask, sigset_t * oldmask) in _nc_sigprocmask() argument
398 return pthread_sigmask(how, newmask, oldmask); in _nc_sigprocmask()
400 return (sigprocmask) (how, newmask, oldmask); in _nc_sigprocmask()
/freebsd/contrib/unbound/util/storage/
H A Dlruhash.c119 int newmask) in bin_split() argument
128 int newbit = newmask - table->size_mask; in bin_split()
142 newbin = &newa[p->hash & newmask]; in bin_split()
239 int newmask; in table_grow() local
253 newmask = (table->size_mask << 1) | 1; in table_grow()
254 bin_split(table, newa, newmask); in table_grow()
263 table->size_mask = newmask; in table_grow()
H A Dlruhash.h399 int newmask);
/freebsd/lib/libc/net/
H A Drcmd.c85 sigset_t oldmask, newmask; in rcmd_af() local
139 sigemptyset(&newmask); in rcmd_af()
140 sigaddset(&newmask, SIGURG); in rcmd_af()
141 __libc_sigprocmask(SIG_BLOCK, (const sigset_t *)&newmask, &oldmask); in rcmd_af()
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_mouse.c1892 NCURSES_SP_NAME(mousemask) (NCURSES_SP_DCLx mmask_t newmask, mmask_t * oldmask) in NCURSES_SP_NAME()
1899 (unsigned long) newmask, in NCURSES_SP_NAME()
1906 if (newmask || SP_PARM->_mouse_initialized) { in NCURSES_SP_NAME()
1912 result = newmask & in NCURSES_SP_NAME()
1950 mousemask(mmask_t newmask, mmask_t * oldmask) in mousemask() argument
1952 return NCURSES_SP_NAME(mousemask) (CURRENT_SCREEN, newmask, oldmask); in mousemask()
/freebsd/sys/kern/
H A Dkern_cpuset.c650 cpuset_t newmask; in cpuset_testupdate() local
657 CPU_AND(&newmask, &set->cs_mask, mask); in cpuset_testupdate()
659 CPU_COPY(mask, &newmask); in cpuset_testupdate()
661 if (CPU_EMPTY(&newmask)) in cpuset_testupdate()
665 if ((error = cpuset_testupdate(nset, &newmask, 1)) != 0) in cpuset_testupdate()
H A Dvfs_syscalls.c4258 int newmask; member
4269 pdp->pd_cmask = uap->newmask & ALLPERMS; in sys_umask()
H A Dsystrace_args.c396 iarg[a++] = p->newmask; /* mode_t */ in systrace_args()
/freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h426 #define __sanitizer_syscall_pre_ssetmask(newmask) \ argument
427 __sanitizer_syscall_pre_impl_ssetmask((long)(newmask))
428 #define __sanitizer_syscall_post_ssetmask(res, newmask) \ argument
429 __sanitizer_syscall_post_impl_ssetmask(res, (long)(newmask))
2258 void __sanitizer_syscall_pre_impl_ssetmask(long newmask);
2259 void __sanitizer_syscall_post_impl_ssetmask(long res, long newmask);
H A Dnetbsd_syscall_hooks.h339 #define __sanitizer_syscall_pre_umask(newmask) \ argument
340 __sanitizer_syscall_pre_impl_umask((long long)(newmask))
341 #define __sanitizer_syscall_post_umask(res, newmask) \ argument
342 __sanitizer_syscall_post_impl_umask(res, (long long)(newmask))
3092 void __sanitizer_syscall_pre_impl_umask(long long newmask);
3093 void __sanitizer_syscall_post_impl_umask(long long res, long long newmask);
/freebsd/lib/libsys/
H A D_libsys.h513 mode_t __sys_umask(mode_t newmask);
/freebsd/contrib/ncurses/ncurses/
H A Dllib-lncurses1448 mmask_t newmask,
1454 mmask_t newmask,
H A Dllib-lncursest1457 mmask_t newmask,
1463 mmask_t newmask,
H A Dllib-lncursestw2038 mmask_t newmask,
2044 mmask_t newmask,
H A Dllib-lncursesw2029 mmask_t newmask,
2035 mmask_t newmask,
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc813 PRE_SYSCALL(ssetmask)(long newmask) {}
815 POST_SYSCALL(ssetmask)(long res, long newmask) {}
/freebsd/sys/arm64/linux/
H A Dlinux_systrace_args.c1318 iarg[a++] = p->newmask; /* int */ in systrace_args()
/freebsd/sys/amd64/linux/
H A Dlinux_systrace_args.c829 iarg[a++] = p->newmask; /* int */ in systrace_args()
/freebsd/sys/i386/linux/
H A Dlinux_systrace_args.c386 iarg[a++] = p->newmask; /* int */ in systrace_args()
/freebsd/sys/amd64/linux32/
H A Dlinux32_systrace_args.c386 iarg[a++] = p->newmask; /* int */ in systrace_args()
/freebsd/sys/compat/freebsd32/
H A Dfreebsd32_systrace_args.c399 iarg[a++] = p->newmask; /* mode_t */ in systrace_args()
/freebsd/sys/sys/
H A Dsysproto.h241 char newmask_l_[PADL_(mode_t)]; mode_t newmask; char newmask_r_[PADR_(mode_t)]; member
/freebsd/contrib/sqlite3/
H A Dsqlite3.c19749 u32 newmask; /* Mask of new.* columns referenced */ member
106715 pParse->newmask |= (iCol>=32 ? 0xffffffff : (((u32)1)<<iCol));
151768 pPrg->aColmask[1] = sSubParse.newmask;
152334 int newmask; /* Mask of NEW.* columns accessed by BEFORE triggers */
152943 newmask = sqlite3TriggerColmask(
152961 }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask & MASKBIT32(i)) ){