HomeSort by relevance Sort by last modified time
    Searched refs:queryIntentServicesAsUser (Results 1 - 25 of 53) sorted by null

1 2 3

  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
PackageManagerWrapperImpl.java 91 public List<ResolveInfo> queryIntentServicesAsUser(Intent intent, int i, int user) {
92 return mPm.queryIntentServicesAsUser(intent, i, user);
PackageManagerWrapper.java 94 * Calls {@code PackageManager.queryIntentServicesAsUser}
96 List<ResolveInfo> queryIntentServicesAsUser(Intent intent, int i, int user);
  /packages/apps/Settings/src/com/android/settings/applications/
PackageManagerWrapperImpl.java 86 public List<ResolveInfo> queryIntentServicesAsUser(Intent intent, int i, int user) {
87 return mPm.queryIntentServicesAsUser(intent, i, user);
PackageManagerWrapper.java 94 * Calls {@code PackageManager.queryIntentServicesAsUser}
96 List<ResolveInfo> queryIntentServicesAsUser(Intent intent, int i, int user);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
ImsResolverTest.java 116 when(mMockPM.queryIntentServicesAsUser(any(), anyInt(), anyInt())).thenReturn(info);
145 when(mMockPM.queryIntentServicesAsUser(any(), anyInt(), anyInt())).thenReturn(info);
174 when(mMockPM.queryIntentServicesAsUser(any(), anyInt(), anyInt())).thenReturn(info);
207 when(mMockPM.queryIntentServicesAsUser(any(), anyInt(), anyInt())).thenReturn(info);
249 when(mMockPM.queryIntentServicesAsUser(any(), anyInt(), anyInt())).thenReturn(info);
328 when(mMockPM.queryIntentServicesAsUser(any(), anyInt(), anyInt())).thenReturn(info);
383 when(mMockPM.queryIntentServicesAsUser(any(), anyInt(), anyInt())).thenReturn(info);
454 when(mMockPM.queryIntentServicesAsUser(any(), anyInt(), anyInt())).thenReturn(info);
524 when(mMockPM.queryIntentServicesAsUser(any(), anyInt(), anyInt())).thenReturn(info);
593 when(mMockPM.queryIntentServicesAsUser(any(), anyInt(), anyInt())).thenReturn(info)
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/defaultapps/
DefaultNotificationAssistantPicker.java 61 List<ResolveInfo> installedServices = mPm.queryIntentServicesAsUser(
  /frameworks/base/core/java/android/content/pm/
AppsQueryHelper.java 137 final List<ResolveInfo> resolveInfos = queryIntentServicesAsUser(
194 protected List<ResolveInfo> queryIntentServicesAsUser(Intent intent, int userId) {
  /frameworks/base/services/print/java/com/android/server/print/
RemotePrintServiceRecommendationService.java 85 .queryIntentServicesAsUser(new Intent(
  /packages/apps/Settings/src/com/android/settings/utils/
ZenServiceListing.java 121 List<ResolveInfo> installedServices = pm.queryIntentServicesAsUser(
ServiceListing.java 105 List<ResolveInfo> installedServices = pm.queryIntentServicesAsUser(
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
CallScreeningServiceFilterTest.java 114 when(mPackageManager.queryIntentServicesAsUser(nullable(Intent.class), anyInt(), anyInt()))
132 when(mPackageManager.queryIntentServicesAsUser(nullable(Intent.class), anyInt(), anyInt()))
InCallControllerTests.java 210 verify(mMockPackageManager, times(4)).queryIntentServicesAsUser(
266 verify(mMockPackageManager, times(4)).queryIntentServicesAsUser(
332 verify(mMockPackageManager, times(4)).queryIntentServicesAsUser(
401 verify(mMockPackageManager, times(4)).queryIntentServicesAsUser(
543 }).when(mMockPackageManager).queryIntentServicesAsUser(
  /frameworks/base/services/core/java/com/android/server/
ServiceWatcher.java 188 return mPm.queryIntentServicesAsUser(intent, flags, mCurrentUserId).isEmpty();
206 final List<ResolveInfo> rInfos = mPm.queryIntentServicesAsUser(intent,
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppsQueryHelperTests.java 149 protected List<ResolveInfo> queryIntentServicesAsUser(Intent intent, int userId) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
TileQueryHelper.java 114 List<ResolveInfo> services = pm.queryIntentServicesAsUser(
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
TileServiceManager.java 260 List<ResolveInfo> services = pm.queryIntentServicesAsUser(
  /frameworks/base/services/core/java/com/android/server/media/
RemoteDisplayProviderWatcher.java 117 for (ResolveInfo resolveInfo : mPackageManager.queryIntentServicesAsUser(
  /frameworks/base/services/core/java/com/android/server/tv/
TvRemoteProviderWatcher.java 112 for (ResolveInfo resolveInfo : mPackageManager.queryIntentServicesAsUser(
  /frameworks/base/services/core/java/com/android/server/vr/
EnabledComponentsObserver.java 256 List<ResolveInfo> installedServices = pm.queryIntentServicesAsUser(
  /packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
CallScreeningServiceFilter.java 213 List<ResolveInfo> entries = mContext.getPackageManager().queryIntentServicesAsUser(
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
RegisteredServicesCache.java 228 List<ResolveInfo> resolvedServices = new ArrayList<>(pm.queryIntentServicesAsUser(
232 List<ResolveInfo> resolvedOffHostServices = pm.queryIntentServicesAsUser(
  /frameworks/base/services/backup/java/com/android/server/backup/
TransportManager.java 251 List<ResolveInfo> hosts = mPackageManager.queryIntentServicesAsUser(
  /packages/apps/Settings/src/com/android/settings/location/
SettingsInjector.java 122 pm.queryIntentServicesAsUser(intent, PackageManager.GET_META_DATA, profileId);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgePackageManager.java 433 public List<ResolveInfo> queryIntentServicesAsUser(Intent intent, int flags, int userId) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
ImsResolver.java 659 for (ResolveInfo entry : packageManager.queryIntentServicesAsUser(

Completed in 603 milliseconds

1 2 3