Lines Matching refs:right_word
498 char *right_word; in tomoyo_get_condition() local
519 right_word = strchr(left_word, '='); in tomoyo_get_condition()
520 if (!right_word || right_word == left_word) in tomoyo_get_condition()
522 is_not = *(right_word - 1) == '!'; in tomoyo_get_condition()
524 *(right_word++ - 1) = '\0'; /* Will restore later. */ in tomoyo_get_condition()
525 else if (*(right_word + 1) != '=') in tomoyo_get_condition()
526 *right_word++ = '\0'; /* Will restore later. */ in tomoyo_get_condition()
530 is_not ? "!" : "", right_word); in tomoyo_get_condition()
536 else if (!strcmp(right_word, "yes")) in tomoyo_get_condition()
538 else if (!strcmp(right_word, "no")) in tomoyo_get_condition()
555 right_word, argv++)) in tomoyo_get_condition()
570 right_word, envp++)) in tomoyo_get_condition()
602 param->data = right_word; in tomoyo_get_condition()
609 right = tomoyo_condition_type(right_word); in tomoyo_get_condition()
616 param->data = right_word; in tomoyo_get_condition()