Lines Matching defs:execp
622 execattr_t *execp;
624 for (execp = exec; execp != NULL; execp = execp->next) {
625 if ((profname == NULL || execp->name == NULL ||
626 strcmp(profname, execp->name) == 0) &&
627 (type == NULL || execp->type == NULL ||
628 strcmp(type, execp->type) == 0) &&
629 (id == NULL || execp->id == NULL ||
630 strcmp(id, execp->id) == 0)) {
636 return (execp);