Home | History | Annotate | Download | only in src

Lines Matching refs:op_str

472 			char *op_str = NULL;
476 op_str = CIL_KEY_AND;
479 op_str = CIL_KEY_OR;
482 op_str = CIL_KEY_NOT;
485 op_str = CIL_KEY_ALL;
488 op_str = CIL_KEY_XOR;
494 fprintf(file_arr[file_index], " %s", op_str);
675 char *op_str = NULL;
683 op_str = CIL_KEY_AND;
686 op_str = CIL_KEY_OR;
689 op_str = CIL_KEY_NOT;
692 op_str = CIL_KEY_ALL;
695 op_str = CIL_KEY_EQ;
698 op_str = CIL_KEY_NEQ;
701 op_str = CIL_KEY_XOR;
704 op_str = CIL_KEY_CONS_DOM;
707 op_str = CIL_KEY_CONS_DOMBY;
710 op_str = CIL_KEY_CONS_INCOMP;
718 len = strlen(stack[pos-1]) + strlen(op_str) + 4;
720 snprintf(expr_str, len, "(%s %s)", op_str, stack[pos-1]);
729 len = strlen(stack[pos-1]) + strlen(stack[pos-2]) + strlen(op_str) + 5;
731 snprintf(expr_str, len, "(%s %s %s)", stack[pos-1], op_str, stack[pos-2]);