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

AndFilter

public class AndFilter 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 false;
            }
        }
        return true;