Lines Matching defs:clp
1001 classpids_t *clp;
1003 for (clp = clpids; clp != &clpids[nclass]; clp++) {
1004 if (strcmp(clp->clp_clname, clname) == 0) {
1005 if (clp->clp_npids == clp->clp_pidlistsz)
1006 increase_pidlist(clp);
1008 (clp->clp_pidlist)[clp->clp_npids] = pid;
1009 clp->clp_npids++;
1017 increase_pidlist(classpids_t *clp)
1019 if ((clp->clp_pidlist = realloc(clp->clp_pidlist,
1020 (clp->clp_pidlistsz + NPIDS) * sizeof (pid_t))) == NULL)
1026 clp->clp_pidlistsz += NPIDS;