Lines Matching refs:stprmargs
71 struct stprmargs { struct
119 static int setparms(proc_t *, struct stprmargs *);
136 struct stprmargs stprmargs; in priocntl_common() local
321 stprmargs.stp_parmsp = &pcparms; in priocntl_common()
322 stprmargs.stp_error = 0; in priocntl_common()
324 error = setparms(curproc, &stprmargs); in priocntl_common()
326 if (error == 0 && stprmargs.stp_error != 0) in priocntl_common()
327 error = stprmargs.stp_error; in priocntl_common()
332 stprmargs.stp_parmsp = &pcparms; in priocntl_common()
333 stprmargs.stp_error = 0; in priocntl_common()
346 (char *)&stprmargs); in priocntl_common()
382 if (error == 0 && stprmargs.stp_error != 0) in priocntl_common()
383 error = stprmargs.stp_error; in priocntl_common()
881 setparms(proc_t *targpp, struct stprmargs *stprmp) in setparms()