FileDocCategorySizeDatePackage
OrFilter.javaAPI DocAndroid 5.1 API1625Thu Mar 12 22:22:42 GMT 2015com.android.server.firewall

OrFilter

public class OrFilter extends FilterList

Fields Summary
public static final FilterFactory
FACTORY
Constructors Summary
Methods Summary
public booleanmatches(IntentFirewall ifw, android.content.ComponentName resolvedComponent, android.content.Intent intent, int callerUid, int callerPid, java.lang.String resolvedType, int receivingUid)

        for (int i=0; i<children.size(); i++) {
            if (children.get(i).matches(ifw, resolvedComponent, intent, callerUid, callerPid,
                    resolvedType, receivingUid)) {
                return true;
            }
        }
        return false;