Lines Matching refs:condp
482 struct tomoyo_condition_element *condp = NULL; in tomoyo_get_condition() local
592 if (!condp) in tomoyo_get_condition()
624 if (!condp) { in tomoyo_get_condition()
629 condp->left = left; in tomoyo_get_condition()
630 condp->right = right; in tomoyo_get_condition()
631 condp->equals = !is_not; in tomoyo_get_condition()
633 __LINE__, condp->left, condp->right, in tomoyo_get_condition()
634 condp->equals); in tomoyo_get_condition()
635 condp++; in tomoyo_get_condition()
656 condp = (struct tomoyo_condition_element *) (entry + 1); in tomoyo_get_condition()
657 numbers_p = (struct tomoyo_number_union *) (condp + e.condc); in tomoyo_get_condition()
751 const struct tomoyo_condition_element *condp; in tomoyo_condition() local
771 condp = (struct tomoyo_condition_element *) (cond + 1); in tomoyo_condition()
772 numbers_p = (const struct tomoyo_number_union *) (condp + condc); in tomoyo_condition()
778 const bool match = condp->equals; in tomoyo_condition()
779 const u8 left = condp->left; in tomoyo_condition()
780 const u8 right = condp->right; in tomoyo_condition()
783 condp++; in tomoyo_condition()