Searched refs:getMatchedRules (Results 1 – 5 of 5) sorted by relevance
101 assertThat(result.getMatchedRules()).containsExactly(rule1); in testEvaluateRules_oneMatch_deny()131 assertThat(result.getMatchedRules()).containsExactly(rule1, rule2); in testEvaluateRules_multipleMatches_deny()150 assertThat(result.getMatchedRules()).containsExactly(rule); in testEvaluateRules_ruleWithNot_deny()165 assertThat(result.getMatchedRules()).containsExactly(rule); in testEvaluateRules_ruleWithIntegerOperators_deny()188 assertThat(result.getMatchedRules()).containsExactly(rule); in testEvaluateRules_validForm_deny()211 assertThat(result.getMatchedRules()).containsExactly(rule); in testEvaluateRules_orRules()236 assertThat(result.getMatchedRules()).containsExactly(rule); in testEvaluateRules_compoundFormulaWithNot_deny()266 assertThat(result.getMatchedRules()).containsExactly(rule1); in testEvaluateRules_forceAllow()296 assertThat(result.getMatchedRules()).containsExactly(rule1, rule2); in testEvaluateRules_multipleMatches_forceAllow()
53 public List<Rule> getMatchedRules() { in getMatchedRules() method in IntegrityCheckResult91 } else if (getEffect() == Effect.ALLOW && getMatchedRules().isEmpty()) { in getLoggingResponse()93 } else if (getEffect() == Effect.ALLOW && !getMatchedRules().isEmpty()) { in getLoggingResponse()
42 assertThat(allowResult.getMatchedRules()).isEmpty(); in createAllowResult()60 assertThat(allowResult.getMatchedRules()).containsExactly(forceAllowRule); in createAllowResultWithRule()79 assertThat(denyResult.getMatchedRules()).containsExactly(failedRule); in createDenyResultWithRule()
332 if (!result.getMatchedRules().isEmpty() || DEBUG_INTEGRITY_COMPONENT) { in handleIntegrityVerification()337 packageName, result.getEffect(), result.getMatchedRules())); in handleIntegrityVerification()
20124 PLcom/android/server/integrity/model/IntegrityCheckResult;->getMatchedRules()Ljava/util/List;