Searched defs:set (Results 1 - 25 of 319) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dtimetype.sh41 set() function
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dabort.c48 sigset_t set; local
61 if (!sigprocmask(SIG_SETMASK, NULL, &set) &&
62 sigismember(&set, SIGABRT)) {
63 if (!sigpending(&set) && !sigismember(&set, SIGABRT))
H A Dsigsend.c42 procset_t set; local
43 setprocset(&set, POP_AND, idtype, id, P_ALL, P_MYID);
44 return (sigsendset(&set, sig));
/illumos-gate/usr/src/lib/libc/port/sys/
H A Dlwp_sigmask.c32 __lwp_sigmask(int how, const sigset_t *set) argument
35 set->__sigbits[0],
36 set->__sigbits[1],
37 set->__sigbits[2],
38 set->__sigbits[3]));
H A Dsigpending.c36 sigpending(sigset_t *set) argument
38 return (syscall(SYS_sigpending, 1, set));
42 __sigfillset(sigset_t *set) argument
44 return (syscall(SYS_sigpending, 2, set));
/illumos-gate/usr/src/uts/common/gssapi/
H A Dgss_release_oid_set.c36 gss_release_oid_set(OM_uint32 *minor_status, gss_OID_set *set) argument
42 if (set == NULL)
45 if (*set == GSS_C_NULL_OID_SET)
48 FREE((*set)->elements, (*set)->count * sizeof (gss_OID_desc));
49 FREE(*set, sizeof (gss_OID_set_desc));
51 *set = GSS_C_NULL_OID_SET;
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dastintercept.c32 * set/clear ast intercept callouts
36 astintercept(Shbltin_t* call, int set) argument
40 if (set)
47 if (set)
H A Ddebug.c44 debug_elapsed(int set) argument
53 if (set)
61 debug_elapsed(int set) argument
/illumos-gate/usr/src/uts/common/syscall/
H A Dsigsuspend.c48 sigset_t set; local
52 if (copyin((caddr_t)setp, (caddr_t)&set, sizeof (sigset_t)))
54 sigutok(&set, &kset);
H A Dsigpending.c47 sigset_t set; local
68 sigktou(&kset, &set);
69 if (copyout((caddr_t)&set, (caddr_t)setp, sizeof (sigset_t)))
H A Dsigsendset.c50 procset_t set; local
62 if (copyin((caddr_t)psp, (caddr_t)&set, sizeof (procset_t)))
64 if (error = sigsendset(&set, &v))
H A Dsigaction.c47 k_sigset_t set; local
88 set = ua->u_sigmask[sig-1];
100 sigemptyset(&set);
111 sigktou(&set, &oact.sa_mask);
117 sigutok(&act.sa_mask, &set);
118 setsigact(sig, act.sa_handler, &set, act.sa_flags);
140 k_sigset_t set; local
181 set = ua->u_sigmask[sig-1];
193 sigemptyset(&set);
204 sigktou(&set,
211 setsigact(sig, (void (*)())(uintptr_t)act32.sa_handler, &set, local
[all...]
H A Dsigprocmask.c95 sigset_t set; local
112 if (copyin((caddr_t)setp, (caddr_t)&set, sizeof (sigset_t)))
114 sigutok(&set, &kset);
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfset.c30 int sfset(Sfio_t* f, int flags, int set) argument
32 int sfset(f,flags,set)
35 int set;
43 if(flags == 0 && set == 0)
59 /* set the flag */
60 if(set)
73 { if(!set)
/illumos-gate/usr/src/cmd/tnf/prex/
H A Dset.h49 typedef struct set { struct
61 set_t *set(char *name, expr_t * exprlist_p);
H A Dset.c36 #include "set.h"
58 * set() - creates a set
62 set(char *setname_p, expr_t * exprlist_p) function
72 /* create a new set */
78 /* append the new set to the global list */
83 } /* end set */
87 * set_destroy() - destroys a set and related resources
131 * set_print() - pretty prints a set
147 * set_match() - discerns whether a probe is in a set
[all...]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/proc/
H A Dtst.sigwait.c41 sigset_t set; local
54 (void) sigemptyset(&set);
55 (void) sigaddset(&set, SIGUSR1);
56 (void) sigprocmask(SIG_BLOCK, &set, NULL);
70 (void) sigwait(&set);
/illumos-gate/usr/src/cmd/sendmail/db/os/
H A Dos_open.c39 sigset_t set, oset; local
50 * with O_CREAT and O_EXCL set will return failure in at least one.
87 (void)sigfillset(&set);
88 (void)sigprocmask(SIG_BLOCK, &set, &oset);
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Ddaemon.c58 sigset_t set, oset; local
67 (void) sigfillset(&set);
68 (void) sigdelset(&set, SIGABRT);
69 (void) sigprocmask(SIG_BLOCK, &set, &oset);
/illumos-gate/usr/src/ucbcmd/stty/
H A Dstty.h45 long set; member in struct:mds
/illumos-gate/usr/src/uts/i86pc/os/
H A Dmp_call.c66 cpuset_t set; local
88 CPUSET_ONLY(set, cp->cpu_id);
89 xc_call((xc_arg_t)arg1, (xc_arg_t)arg2, 0, CPUSET2BV(set),
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Dutil_buffer_set.c43 gss_buffer_set_t set; local
45 set = (gss_buffer_set_desc *) malloc(sizeof(*set));
46 if (set == GSS_C_NO_BUFFER_SET) {
51 set->count = 0;
52 set->elements = NULL;
54 *buffer_set = set;
65 gss_buffer_set_t set; local
77 set = *buffer_set;
78 set
[all...]
/illumos-gate/usr/src/cmd/sendmail/libmilter/
H A Dsignal.c5 * By using this file, you agree to the terms and conditions set
45 ** MI_STOP_MILTERS -- set value of MilterStop
96 sigset_t set; local
98 (void) sigemptyset(&set);
99 (void) sigaddset(&set, SIGHUP);
100 (void) sigaddset(&set, SIGTERM);
103 (void) sigaddset(&set, SIGINT);
110 if ((sig = sigwait(&set)) < 0)
112 if ((sigerr = sigwait(&set, &sig)) != 0)
115 /* some OS return -1 and set errn
168 sigset_t set; local
[all...]
/illumos-gate/usr/src/cmd/ast/msgcc/
H A Dmsgget.c35 " \b-\b then the message set and number are determined by looking up"
39 "\nlocale [command:]catalog [set.]number [ text ]\n"
58 int set; local
82 set = num = 0;
84 mcindex(s, NiL, &set, &num);
103 if (set)
104 s = mcget(mc, set, num, msg);
/illumos-gate/usr/src/cmd/syseventd/daemons/syseventd/
H A Dsysevent_signal.c72 sigset_t set; local
74 (void) sigemptyset(&set);
75 (void) sigaddset(&set, sig);
77 return (thr_sigsetmask(SIG_UNBLOCK, &set, NULL));
83 sigset_t set; local
85 (void) sigfillset(&set);
86 return (thr_sigsetmask(SIG_BLOCK, &set, NULL));
92 sigset_t set; local
94 (void) sigfillset(&set);
95 return (thr_sigsetmask(SIG_UNBLOCK, &set, NUL
[all...]

Completed in 118 milliseconds

1234567891011>>