Lines Matching refs:exec
130 execattr_t *exec; in show_profs() local
148 exec = getexecuser(username, KV_COMMAND, NULL, in show_profs()
150 if (exec != NULL) { in show_profs()
151 print_profs_long(exec); in show_profs()
152 free_execattr(exec); in show_profs()
198 print_profs_long(execattr_t *exec) in print_profs_long() argument
207 for (curprofile = ""; exec != NULL; exec = exec->next) { in print_profs_long()
209 if (strcmp(curprofile, exec->name) != 0) { in print_profs_long()
211 curprofile = exec->name; in print_profs_long()
222 len = printf(" %s ", exec->id); in print_profs_long()
224 if ((exec->attr == NULL || exec->attr->data == NULL)) { in print_profs_long()
242 kv_pair = exec->attr->data; in print_profs_long()
243 for (i = 0; i < exec->attr->length; i++) { in print_profs_long()