Home
last modified time | relevance | path

Searched refs:ignoreActions (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DWatchedIntentFilter.java646 Collection<String> ignoreActions) { in match() argument
649 ignoreActions); in match()
/aosp12/frameworks/base/core/java/android/content/
H A DIntentFilter.java790 @Nullable Collection<String> ignoreActions) { in matchAction() argument
792 if (ignoreActions == null) { in matchAction()
796 if (!ignoreActions.contains(mActions.get(i))) { in matchAction()
802 if (ignoreActions != null && ignoreActions.contains(action)) { in matchAction()
1834 @Nullable Collection<String> ignoreActions) { in match() argument
1835 if (action != null && !matchAction(action, supportWildcards, ignoreActions)) { in match()