Searched defs:iset (Results 1 - 13 of 13) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/link_audit/common/
H A Dbindings.c50 static const sigset_t iset = { ~0U, ~0U, ~0U, ~0U }; variable
244 (void) sigprocmask(SIG_BLOCK, &iset, &omask);
389 (void) sigprocmask(SIG_BLOCK, &iset, &omask);
H A Dperfcnt.c69 static sigset_t iset; variable
131 * Initalize iset to the full set of signals to be masked durring
134 (void) sigfillset(&iset);
216 (void) sigprocmask(SIG_BLOCK, &iset, &oset);
H A Dtruss.c47 static sigset_t iset; variable
142 * Initalize iset to the full set of signals to be masked durring
145 (void) sigfillset(&iset);
252 (void) sigprocmask(SIG_BLOCK, &iset, &oset);
293 (void) sigprocmask(SIG_BLOCK, &iset, &oset);
H A Dwho.c44 static sigset_t iset; variable
256 * Initalize iset to the full set of signals to be masked durring
259 (void) sigfillset(&iset);
305 (void) sigprocmask(SIG_BLOCK, &iset, &oset);
/illumos-gate/usr/src/uts/sun4v/io/niumx/
H A Dniumx_tools.c407 pcitool_intr_set_t iset; local
417 bzero(&iset, sizeof (pcitool_intr_set_t));
420 copyinout_size = (size_t)&iset.flags - (size_t)&iset;
422 if (ddi_copyin(arg, &iset, copyinout_size, mode) != DDI_SUCCESS)
425 switch (iset.user_version) {
431 if (ddi_copyin(arg, &iset, copyinout_size, mode) != DDI_SUCCESS)
436 iset.status = PCITOOL_OUT_OF_RANGE;
441 if (iset.flags & PCITOOL_INTR_FLAG_SET_GROUP) {
442 iset
[all...]
/illumos-gate/usr/src/uts/sun4/io/px/
H A Dpx_tools.c250 pcitool_intr_set_t iset; local
260 bzero(&iset, sizeof (pcitool_intr_set_t));
263 copyinout_size = (size_t)&iset.flags - (size_t)&iset;
265 if (ddi_copyin(arg, &iset, copyinout_size, mode) != DDI_SUCCESS)
268 switch (iset.user_version) {
274 if (ddi_copyin(arg, &iset, copyinout_size, mode) != DDI_SUCCESS)
279 iset.status = PCITOOL_OUT_OF_RANGE;
284 if (iset.flags & PCITOOL_INTR_FLAG_SET_GROUP) {
285 iset
[all...]
/illumos-gate/usr/src/cmd/pfexecd/
H A Dpfexecd.c359 priv_set_t *lset, *iset; local
403 lset = iset = NULL;
425 iset = get_privset(value, &res->pfr_allowed, path);
432 (gid != (gid_t)-1 && egid == gid) || iset != NULL;
441 if (iset != NULL) {
443 priv_copyset(iset, PFEXEC_REPLY_IPRIV(res));
445 priv_freeset(iset);
455 egid != (gid_t)-1 || gid != (gid_t)-1 || iset != NULL ||
/illumos-gate/usr/src/cmd/sgs/ldprof/common/
H A Dprofile.c63 static const sigset_t iset = { ~0U, ~0U, ~0U, ~0U }; variable
78 (void) sigprocmask(SIG_BLOCK, &iset, oset);
/illumos-gate/usr/src/uts/i86pc/io/pci/
H A Dpci_tools.c131 pcitool_intr_set_t iset; local
139 copyinout_size = (size_t)&iset.flags - (size_t)&iset;
141 if (ddi_copyin(arg, &iset, copyinout_size, mode) != DDI_SUCCESS)
144 switch (iset.user_version) {
150 if (ddi_copyin(arg, &iset, copyinout_size, mode) != DDI_SUCCESS)
155 iset.status = PCITOOL_OUT_OF_RANGE;
160 if (iset.flags & PCITOOL_INTR_FLAG_SET_MSI) {
162 iset.status = PCITOOL_IO_ERROR;
171 iset
[all...]
/illumos-gate/usr/src/uts/sun4u/io/pci/
H A Dpci_tools.c418 pcitool_intr_set_t iset; local
425 bzero(&iset, sizeof (pcitool_intr_set_t));
428 copyinout_size = (size_t)&iset.flags - (size_t)&iset;
430 if (ddi_copyin(arg, &iset, copyinout_size, mode) != DDI_SUCCESS)
433 switch (iset.user_version) {
439 if (ddi_copyin(arg, &iset, copyinout_size, mode) != DDI_SUCCESS)
444 iset.status = PCITOOL_OUT_OF_RANGE;
449 if ((iset.flags & PCITOOL_INTR_FLAG_SET_GROUP) ||
450 (iset
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Dklpd.c854 priv_set_t *iset; local
963 iset = PFEXEC_REPLY_IPRIV(prp);
965 if (iset != NULL) {
966 if (!priv_issubset(iset, &CR_LPRIV(ncr)))
968 priv_union(iset, &CR_IPRIV(ncr));
/illumos-gate/usr/src/cmd/pcitool/
H A Dpcitool.c1692 pcitool_intr_set_t iset; local
1699 iset.msi = intr = input_args_p->intr_msi;
1700 iset.flags = PCITOOL_INTR_FLAG_SET_MSI;
1703 iset.ino = intr = input_args_p->intr_ino;
1704 iset.flags = 0;
1708 iset.cpu_id = input_args_p->intr_cpu;
1709 iset.old_cpu = input_args_p->old_cpu;
1710 iset.user_version = PCITOOL_VERSION;
1711 iset.flags |= (input_args_p->flags & SETGRP_FLAG) ?
1715 if (ioctl(fd, PCITOOL_DEVICE_SET_INTR, &iset) !
[all...]
/illumos-gate/usr/src/uts/common/io/mac/
H A Dmac_util.c586 pcitool_intr_set_t iset; local
589 iset.old_cpu = oldcpuid;
590 iset.ino = ino;
591 iset.cpu_id = cpu_num;
592 iset.user_version = PCITOOL_VERSION;
593 err = ldi_ioctl(lh, PCITOOL_DEVICE_SET_INTR, (intptr_t)&iset, FKIOCTL,

Completed in 83 milliseconds