/illumos-gate/usr/src/lib/libshell/common/tests/ |
H A D | timetype.sh | 41 set() function
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | abort.c | 48 sigset_t set; local 61 if (!sigprocmask(SIG_SETMASK, NULL, &set) && 62 sigismember(&set, SIGABRT)) { 63 if (!sigpending(&set) && !sigismember(&set, SIGABRT))
|
H A D | sigsend.c | 42 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 D | lwp_sigmask.c | 32 __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 D | sigpending.c | 36 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 D | gss_release_oid_set.c | 36 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 D | astintercept.c | 32 * set/clear ast intercept callouts 36 astintercept(Shbltin_t* call, int set) argument 40 if (set) 47 if (set)
|
H A D | debug.c | 44 debug_elapsed(int set) argument 53 if (set) 61 debug_elapsed(int set) argument
|
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | sigsuspend.c | 48 sigset_t set; local 52 if (copyin((caddr_t)setp, (caddr_t)&set, sizeof (sigset_t))) 54 sigutok(&set, &kset);
|
H A D | sigpending.c | 47 sigset_t set; local 68 sigktou(&kset, &set); 69 if (copyout((caddr_t)&set, (caddr_t)setp, sizeof (sigset_t)))
|
H A D | sigsendset.c | 50 procset_t set; local 62 if (copyin((caddr_t)psp, (caddr_t)&set, sizeof (procset_t))) 64 if (error = sigsendset(&set, &v))
|
H A D | sigaction.c | 47 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 D | sigprocmask.c | 95 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 D | sfset.c | 30 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 D | set.h | 49 typedef struct set { struct 61 set_t *set(char *name, expr_t * exprlist_p);
|
H A D | set.c | 36 #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 D | tst.sigwait.c | 41 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 D | os_open.c | 39 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 D | daemon.c | 58 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 D | stty.h | 45 long set; member in struct:mds
|
/illumos-gate/usr/src/uts/i86pc/os/ |
H A D | mp_call.c | 66 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 D | util_buffer_set.c | 43 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 D | signal.c | 5 * 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 D | msgget.c | 35 " \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 D | sysevent_signal.c | 72 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...] |