Searched defs:rset (Results 1 - 9 of 9) sorted by relevance

/osnet-11/usr/src/lib/libnsl/xpol/
H A Dxpol_lib.c482 priv_set_t *rset; local
484 if ((rset = priv_allocset()) == NULL)
487 priv_emptyset(rset);
490 return (rset);
494 priv_union(r->xr_privs, rset);
499 return (rset);
/osnet-11/usr/src/lib/pam_modules/unix_cred/
H A Dunix_cred.c223 priv_set_t *lim, *def, *tset, *rset; local
612 rset = tset = def = lim = NULL;
629 if (ctxt != NULL && (rset = xpol_restricted_privs(ctxt)) == NULL) {
650 if (rset != NULL) {
651 priv_inverse(rset);
652 priv_intersect(rset, def);
744 if (rset != NULL)
745 priv_freeset(rset);
/osnet-11/usr/src/lib/liblgrp/common/
H A Dlgrp.c825 ulong_t *rset; local
845 rset = &lgrp_info->info_rset[LGRP_RSRC_CPU * BT_BITOUL(nlgrps_max)];
852 if (!BT_TEST(rset, i))
972 ulong_t *rset; local
1034 rset = &lgrp_info->info_rset[LGRP_RSRC_MEM *
1042 if (!BT_TEST(rset, i))
1082 ulong_t *rset; local
1116 rset = &lgrp_info->info_rset[type * BT_BITOUL(nlgrps_max)];
1119 if (BT_TEST(rset, i)) {
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_dialog.c170 sip_dlg_route_set_t *rset; local
175 rset = calloc(1, sizeof (*rset));
176 if (rset == NULL)
178 rset->sip_dlg_route_next = NULL;
189 rset->sip_dlg_route = calloc(1, vlen + 1);
190 if (rset->sip_dlg_route == NULL) {
191 free(rset);
197 rset->sip_dlg_route_lr = B_FALSE;
198 (void) strncpy(rset
257 sip_dialog_free_rset(sip_dlg_route_set_t *rset) argument
321 char *rset; local
493 sip_dlg_route_set_t *rset; local
[all...]
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dos-ip.c252 fd_set rset, wset; local
297 FD_ZERO(&rset);
298 FD_SET(sockfd, &rset);
299 wset = rset;
302 eset = rset;
336 if ((n = select(sockfd +1, &rset, &wset, &eset,
342 if (FD_ISSET(sockfd, &wset) || FD_ISSET(sockfd, &rset)) {
367 if ((n = select(sockfd +1, &rset, &wset, NULL,
378 FD_ZERO(&rset);
379 FD_SET(sockfd, &rset);
[all...]
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_mn_handlers.c182 fd_set rset; local
194 FD_ZERO(&rset);
196 FD_SET(pout[0], &rset);
197 FD_SET(perr[0], &rset);
199 (void) select(maxfd, &rset, NULL, NULL, NULL);
210 if (FD_ISSET(pout[0], &rset)) {
226 if (FD_ISSET(perr[0], &rset)) {
/osnet-11/usr/src/lib/librestart/common/
H A Dlibrestart.c3818 priv_set_t *rset = xpol_restricted_privs(cip->xpctxt); local
3820 if (rset == NULL)
3823 if (setppriv(PRIV_OFF, PRIV_INHERITABLE, rset) != 0) {
3826 priv_freeset(rset);
3829 priv_freeset(rset);
/osnet-11/usr/src/lib/fm/topo/modules/common/ses/common/
H A Dses.c609 sigset_t oset, rset; local
624 (void) sigemptyset(&rset);
625 (void) sigaddset(&rset, SIGABRT);
626 (void) sigaddset(&rset, SIGKILL);
627 (void) sigaddset(&rset, SIGSTOP);
628 (void) sigaddset(&rset, SIGCANCEL);
632 if (sigismember(&rset, i) == 1) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dutil.c4023 fd_set rset; local
4025 FD_ZERO(&rset);
4026 FD_SET(sockets[0], &rset);
4027 FD_SET(sockets[1], &rset);
4029 got = PerlSock_select(max + 1, &rset, NULL, NULL, &waitfor);
4030 if (got != 2 || !FD_ISSET(sockets[0], &rset)
4031 || !FD_ISSET(sockets[1], &rset)) {

Completed in 65 milliseconds