Lines Matching refs:condp
481 struct tomoyo_condition_element *condp = NULL; in tomoyo_get_condition() local
591 if (!condp) in tomoyo_get_condition()
623 if (!condp) { in tomoyo_get_condition()
628 condp->left = left; in tomoyo_get_condition()
629 condp->right = right; in tomoyo_get_condition()
630 condp->equals = !is_not; in tomoyo_get_condition()
632 __LINE__, condp->left, condp->right, in tomoyo_get_condition()
633 condp->equals); in tomoyo_get_condition()
634 condp++; in tomoyo_get_condition()
655 condp = (struct tomoyo_condition_element *) (entry + 1); in tomoyo_get_condition()
656 numbers_p = (struct tomoyo_number_union *) (condp + e.condc); in tomoyo_get_condition()
750 const struct tomoyo_condition_element *condp; in tomoyo_condition() local
770 condp = (struct tomoyo_condition_element *) (cond + 1); in tomoyo_condition()
771 numbers_p = (const struct tomoyo_number_union *) (condp + condc); in tomoyo_condition()
777 const bool match = condp->equals; in tomoyo_condition()
778 const u8 left = condp->left; in tomoyo_condition()
779 const u8 right = condp->right; in tomoyo_condition()
782 condp++; in tomoyo_condition()