Lines Matching refs:op_str
280 char *op_str = NULL;
288 op_str = CIL_KEY_AND;
291 op_str = CIL_KEY_OR;
294 op_str = CIL_KEY_NOT;
297 op_str = CIL_KEY_ALL;
300 op_str = CIL_KEY_EQ;
303 op_str = CIL_KEY_NEQ;
306 op_str = CIL_KEY_XOR;
309 op_str = CIL_KEY_RANGE;
312 op_str = CIL_KEY_CONS_DOM;
315 op_str = CIL_KEY_CONS_DOMBY;
318 op_str = CIL_KEY_CONS_INCOMP;
326 len = strlen(stack[pos-1]) + strlen(op_str) + 4;
328 snprintf(expr_str, len, "(%s %s)", op_str, stack[pos-1]);
337 len = strlen(stack[pos-1]) + strlen(stack[pos-2]) + strlen(op_str) + 5;
339 snprintf(expr_str, len, "(%s %s %s)", op_str, stack[pos-1], stack[pos-2]);