Home
last modified time | relevance | path

Searched refs:matching (Results 1 – 13 of 13) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java121 private ArrayList<F> collectFilters(F[] array, IntentFilter matching) { in collectFilters() argument
129 if (IntentFilter.filterEquals(getIntentFilter(cur), matching)) { in collectFilters()
140 public ArrayList<F> findFilters(IntentFilter matching) { in findFilters() argument
141 if (matching.countDataSchemes() == 1) { in findFilters()
143 return collectFilters(mSchemeToFilter.get(matching.getDataScheme(0)), matching); in findFilters()
144 } else if (matching.countDataTypes() != 0 && matching.countActions() == 1) { in findFilters()
146 return collectFilters(mTypedActionToFilter.get(matching.getAction(0)), matching); in findFilters()
147 } else if (matching.countDataTypes() == 0 && matching.countDataSchemes() == 0 in findFilters()
148 && matching.countActions() == 1) { in findFilters()
150 return collectFilters(mActionToFilter.get(matching.getAction(0)), matching); in findFilters()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DWatchedIntentResolver.java144 public ArrayList<F> findFilters(WatchedIntentFilter matching) { in findFilters() argument
145 return super.findFilters(matching.getIntentFilter()); in findFilters()
/aosp14/frameworks/base/tests/TrustTests/
H A DREADME.md7 _closely_ matching existing test file or create a new test file. Prefer many test files over large
40 functionality to a _closely_ matching existing rule.
/aosp14/system/core/init/
H A DREADME.ueventd.md80 certain files in `/sys` when matching uevents are generated. This is done using a ueventd.rc script
87 When a uevent that matches the pattern `/sys/devices/system/cpu/cpu*` is sent, the matching sysfs
91 ## Path matching
104 for a file matching the uevent `FIRMWARE`. It then forks a process to serve this firmware to the
137 `/dev/*/red` will match `/dev/leds/red` as well as `/dev/lights/red`. The pattern matching follows
/aosp14/frameworks/base/packages/SystemUI/docs/
H A Dsos_gesture.md24 Thus, we always launch the same intent, and verify that there is only one matching intent-filter in…
/aosp14/frameworks/base/core/proto/android/net/
H A Dnetworkrequest.proto47 // from the point of view of the request matching code, TRACK_DEFAULT is
/aosp14/frameworks/base/core/api/
H A Dtest-lint-baseline.txt171 …android.media.VolumeShaper.Configuration does not declare a `getOptionFlags()` method matching met…
173 …diopolicy.AudioPolicy does not declare a `isIsTestFocusPolicy()` method matching method android.me…
175 …re.KeyGenParameterSpec does not declare a `isUniqueIdIncluded()` method matching method android.se…
177 …ConnectionRequest does not declare a `isIsAdhocConferenceCall()` method matching method android.te…
179 …android.telecom.ConnectionRequest does not declare a `getRttPipeFromInCall()` method matching meth…
181 …android.telecom.ConnectionRequest does not declare a `getRttPipeToInCall()` method matching method…
183 …onnectionRequest does not declare a `shouldShowIncomingCallUi()` method matching method android.te…
185 …android.view.Display.Mode does not declare a `getResolution()` method matching method android.view…
187 …nlineSuggestionsRequest does not declare a `isClientSupported()` method matching method android.vi…
189 …lineSuggestionsRequest does not declare a `isServiceSupported()` method matching method android.vi…
H A Dsystem-lint-baseline.txt19 …sponse does not declare a `shouldScreenCallViaAudioProcessing()` method matching method android.te…
21 …android.telephony.mbms.DownloadRequest does not declare a `getServiceId()` method matching method …
/aosp14/frameworks/base/cmds/uinput/
H A DREADME.md46 Device ID is used for matching the subsequent commands to a specific device
/aosp14/frameworks/base/cmds/hid/
H A DREADME.md50 Device ID is used for matching the subsequent commands to a specific device
/aosp14/frameworks/base/core/proto/android/server/
H A Djobscheduler.proto226 // we consider matching it against a metered network.
/aosp14/frameworks/base/core/proto/android/providers/settings/
H A Dglobal.proto189 // prompt the user for install when a SIM card with matching UICC carrier privilege rules is
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java9969 List<NotificationRecord> matching = new ArrayList<>();
9976 matching.add(r);
9979 return matching;