Lines Matching defs:exec
84 _print_execstr(execstr_t *exec)
87 (void) fprintf(stdout, " exec-name: [%s]\n", exec->name);
88 if (exec->policy != (char *)NULL) {
89 (void) fprintf(stdout, " policy: [%s]\n", exec->policy);
91 if (exec->type != (char *)NULL) {
92 (void) fprintf(stdout, " type: [%s]\n", exec->type);
94 if (exec->res1 != (char *)NULL) {
95 (void) fprintf(stdout, " res1: [%s]\n", exec->res1);
97 if (exec->res2 != (char *)NULL) {
98 (void) fprintf(stdout, " res2: [%s]\n", exec->res2);
100 if (exec->id != (char *)NULL) {
101 (void) fprintf(stdout, " id: [%s]\n", exec->id);
103 if (exec->attr != (char *)NULL) {
104 (void) fprintf(stdout, " attr: [%s]\n", exec->attr);
106 if (exec->next != (execstr_t *)NULL) {
107 (void) fprintf(stdout, " next: [%s]\n", exec->next->name);
109 _print_execstr(exec->next);