Lines Matching refs:procset
135 procset_t procset; in priocntl_common() local
299 if ((*copyinfn)(psp, &procset, sizeof (procset))) in priocntl_common()
310 if (cur_inset_only(&procset) == B_TRUE) { in priocntl_common()
312 if ((procset.p_lidtype == P_LWPID) || in priocntl_common()
313 (procset.p_ridtype == P_LWPID)) { in priocntl_common()
343 if ((procset.p_lidtype != P_LWPID) || in priocntl_common()
344 (procset.p_ridtype != P_LWPID)) { in priocntl_common()
345 error1 = dotoprocs(&procset, setparms, in priocntl_common()
354 if ((procset.p_lidtype == P_LWPID) || in priocntl_common()
355 (procset.p_ridtype == P_LWPID)) { in priocntl_common()
356 error = dotolwp(&procset, parmsset, in priocntl_common()
413 if ((*copyinfn)(psp, &procset, sizeof (procset))) in priocntl_common()
421 if (cur_inset_only(&procset) == B_TRUE) { in priocntl_common()
423 if ((procset.p_lidtype == P_LWPID) || in priocntl_common()
424 (procset.p_ridtype == P_LWPID)) { in priocntl_common()
487 if ((procset.p_lidtype != P_LWPID) || in priocntl_common()
488 (procset.p_ridtype != P_LWPID)) { in priocntl_common()
489 error1 = dotoprocs(&procset, proccmp, in priocntl_common()
497 if ((procset.p_lidtype == P_LWPID) || in priocntl_common()
498 (procset.p_ridtype == P_LWPID)) { in priocntl_common()
499 error = dotolwp(&procset, threadcmp, in priocntl_common()
543 if (procinset(initpp, &procset)) { in priocntl_common()
677 (*copyinfn)(psp, &procset, sizeof (procset))) in priocntl_common()
680 error = donice(&procset, &pcnice); in priocntl_common()
693 (*copyinfn)(psp, &procset, sizeof (procset))) in priocntl_common()
696 error = doprio(&procset, &pcprio); in priocntl_common()
994 donice(procset_t *procset, pcnice_t *pcnice) in donice() argument
1014 if (procset->p_lidtype != P_LWPID || in donice()
1015 procset->p_ridtype != P_LWPID) in donice()
1016 err_proc = dotoprocs(procset, setprocnice, (char *)pcnice); in donice()
1018 if (procset->p_lidtype == P_LWPID || procset->p_ridtype == P_LWPID) { in donice()
1019 err_thread = dotolwp(procset, setthreadnice, (char *)pcnice); in donice()
1047 if (procinset(initpp, procset)) { in donice()
1164 doprio(procset_t *procset, pcprio_t *pcprio) in doprio() argument
1187 if (procset->p_lidtype != P_LWPID || in doprio()
1188 procset->p_ridtype != P_LWPID) in doprio()
1189 err_proc = dotoprocs(procset, setprocprio, (char *)pcprio); in doprio()
1191 if (procset->p_lidtype == P_LWPID || procset->p_ridtype == P_LWPID) { in doprio()
1192 err_thread = dotolwp(procset, setthreadprio, (char *)pcprio); in doprio()
1220 if (procinset(initpp, procset)) { in doprio()