/aosp12/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | ShortcutHelper.java | 28 import android.content.pm.ShortcutServiceInternal; 70 private ShortcutServiceInternal mShortcutServiceInternal; 149 ShortcutServiceInternal shortcutServiceInternal, UserManager userManager) { in ShortcutHelper() 162 void setShortcutServiceInternal(ShortcutServiceInternal shortcutServiceInternal) { in setShortcutServiceInternal() 175 ShortcutInfo shortcutInfo, ShortcutServiceInternal mShortcutServiceInternal, in isConversationShortcut()
|
H A D | NotificationManagerService.java | 183 import android.content.pm.ShortcutServiceInternal; 2569 ShortcutServiceInternal.class), userManager);
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/appwidget/ |
H A D | AppWidgetServiceImplTest.java | 42 import android.content.pm.ShortcutServiceInternal; 79 private ShortcutServiceInternal mMockShortcutService; 86 LocalServices.removeServiceForTest(ShortcutServiceInternal.class); in setUp() 94 mMockShortcutService = mock(ShortcutServiceInternal.class); in setUp() 96 LocalServices.addService(ShortcutServiceInternal.class, mMockShortcutService); in setUp()
|
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
H A D | DragDropControllerTests.java | 48 import android.content.pm.ShortcutServiceInternal; 402 final ShortcutServiceInternal shortcutService = mock(ShortcutServiceInternal.class); in testValidateProfileAppShortcutArguments_notCallingUid() 407 LocalServices.removeServiceForTest(ShortcutServiceInternal.class); in testValidateProfileAppShortcutArguments_notCallingUid() 408 LocalServices.addService(ShortcutServiceInternal.class, shortcutService); in testValidateProfileAppShortcutArguments_notCallingUid()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
H A D | ShortcutManagerTest5.java | 25 import android.content.pm.ShortcutServiceInternal; 58 LocalServices.removeServiceForTest(ShortcutServiceInternal.class); in setUp()
|
H A D | BaseShortcutManagerTest.java | 84 import android.content.pm.ShortcutServiceInternal; 921 protected ShortcutServiceInternal mInternal; 1348 LocalServices.removeServiceForTest(ShortcutServiceInternal.class); in initService() 1354 mInternal = LocalServices.getService(ShortcutServiceInternal.class); in initService() 1374 LocalServices.removeServiceForTest(ShortcutServiceInternal.class); in shutdownServices()
|
/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
H A D | ShortcutHelperTest.java | 35 import android.content.pm.ShortcutServiceInternal; 77 ShortcutServiceInternal mShortcutServiceInternal;
|
H A D | NotificationManagerServiceTest.java | 133 import android.content.pm.ShortcutServiceInternal; 267 private ShortcutServiceInternal mShortcutServiceInternal;
|
/aosp12/frameworks/base/core/java/android/content/pm/ |
H A D | ShortcutServiceInternal.java | 41 public abstract class ShortcutServiceInternal { class
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | Session.java | 48 import android.content.pm.ShortcutServiceInternal; 391 final ShortcutServiceInternal shortcutService = in validateAndResolveDragMimeTypeExtras() 392 LocalServices.getService(ShortcutServiceInternal.class); in validateAndResolveDragMimeTypeExtras()
|
/aosp12/frameworks/base/services/usage/java/com/android/server/usage/ |
H A D | UsageStatsService.java | 63 import android.content.pm.ShortcutServiceInternal; 173 ShortcutServiceInternal mShortcutServiceInternal; 462 private ShortcutServiceInternal getShortcutServiceInternal() { in getShortcutServiceInternal() 464 mShortcutServiceInternal = LocalServices.getService(ShortcutServiceInternal.class); in getShortcutServiceInternal() 540 final ShortcutServiceInternal shortcutServiceInternal = getShortcutServiceInternal(); in shouldHideShortcutInvocationEvents()
|
/aosp12/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | LauncherAppsService.java | 67 import android.content.pm.ShortcutServiceInternal; 68 import android.content.pm.ShortcutServiceInternal.ShortcutChangeListener; 152 private final ShortcutServiceInternal mShortcutServiceInternal; 184 LocalServices.getService(ShortcutServiceInternal.class)); in LauncherAppsImpl()
|
H A D | ShortcutService.java | 59 import android.content.pm.ShortcutServiceInternal; 60 import android.content.pm.ShortcutServiceInternal.ShortcutChangeListener; 469 LocalServices.addService(ShortcutServiceInternal.class, new LocalService()); in ShortcutService() 3134 private class LocalService extends ShortcutServiceInternal {
|
H A D | UserManagerService.java | 47 import android.content.pm.ShortcutServiceInternal; 1160 final ShortcutServiceInternal shortcutInternal = in ensureCanModifyQuietMode() 1161 LocalServices.getService(ShortcutServiceInternal.class); in ensureCanModifyQuietMode()
|
/aosp12/frameworks/base/services/people/java/com/android/server/people/data/ |
H A D | DataManager.java | 45 import android.content.pm.ShortcutServiceInternal; 136 private ShortcutServiceInternal mShortcutServiceInternal; 155 mShortcutServiceInternal = LocalServices.getService(ShortcutServiceInternal.class); in initialize()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/ |
H A D | DataManagerTest.java | 74 import android.content.pm.ShortcutServiceInternal; 143 private ShortcutServiceInternal mShortcutServiceInternal; 194 addLocalServiceMock(ShortcutServiceInternal.class, mShortcutServiceInternal); in setUp() 299 LocalServices.removeServiceForTest(ShortcutServiceInternal.class); in tearDown()
|
/aosp12/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/ |
H A D | VoiceInteractionManagerService.java | 40 import android.content.pm.ShortcutServiceInternal; 131 ShortcutServiceInternal mShortcutServiceInternal; 186 LocalServices.getService(ShortcutServiceInternal.class)); in onBootPhase()
|
/aosp12/frameworks/base/services/appwidget/java/com/android/server/appwidget/ |
H A D | AppWidgetServiceImpl.java | 63 import android.content.pm.ShortcutServiceInternal; 1555 return LocalServices.getService(ShortcutServiceInternal.class) in isRequestPinAppWidgetSupported() 1586 return LocalServices.getService(ShortcutServiceInternal.class) in requestPinAppWidget()
|
/aosp12/frameworks/base/boot/ |
H A D | preloaded-classes | 1581 android.content.pm.ShortcutServiceInternal$ShortcutChangeListener 1582 android.content.pm.ShortcutServiceInternal
|
H A D | boot-image-profile.txt | 24473 Landroid/content/pm/ShortcutServiceInternal$ShortcutChangeListener; 24474 Landroid/content/pm/ShortcutServiceInternal;
|
/aosp12/frameworks/base/config/ |
H A D | preloaded-classes | 1580 android.content.pm.ShortcutServiceInternal$ShortcutChangeListener 1581 android.content.pm.ShortcutServiceInternal
|
H A D | boot-image-profile.txt | 34110 Landroid/content/pm/ShortcutServiceInternal$ShortcutChangeListener; 34111 Landroid/content/pm/ShortcutServiceInternal;
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 16244 Landroid/content/pm/ShortcutServiceInternal$ShortcutChangeListener;->onShortcutChanged(Ljava/lang/S… 16245 Landroid/content/pm/ShortcutServiceInternal;-><init>()V 16246 Landroid/content/pm/ShortcutServiceInternal;->addListener(Landroid/content/pm/ShortcutServiceIntern… 16247 Landroid/content/pm/ShortcutServiceInternal;->createShortcutIntents(ILjava/lang/String;Ljava/lang/S… 16249 Landroid/content/pm/ShortcutServiceInternal;->getShortcutIconResId(ILjava/lang/String;Ljava/lang/St… 16251 Landroid/content/pm/ShortcutServiceInternal;->hasShortcutHostPermission(ILjava/lang/String;II)Z 16252 Landroid/content/pm/ShortcutServiceInternal;->isForegroundDefaultLauncher(Ljava/lang/String;I)Z 16253 Landroid/content/pm/ShortcutServiceInternal;->isPinnedByCaller(ILjava/lang/String;Ljava/lang/String… 16254 Landroid/content/pm/ShortcutServiceInternal;->isRequestPinItemSupported(II)Z 16255 Landroid/content/pm/ShortcutServiceInternal;->pinShortcuts(ILjava/lang/String;Ljava/lang/String;Lja… [all …]
|
/aosp12/frameworks/base/services/ |
H A D | art-profile | 10558 …iceImpl;->isRequestPinAppWidgetSupported()Z+]Landroid/content/pm/ShortcutServiceInternal;Lcom/andr… 27517 …notification/ShortcutHelper$ShortcutListener;Landroid/content/pm/ShortcutServiceInternal;Landroid/… 27521 …nversationShortcut(Landroid/content/pm/ShortcutInfo;Landroid/content/pm/ShortcutServiceInternal;I)Z 28626 …cess$1900(Lcom/android/server/people/data/DataManager;)Landroid/content/pm/ShortcutServiceInternal; 28646 …g/String;ILjava/util/List;)Ljava/util/List;+]Landroid/content/pm/ShortcutServiceInternal;Lcom/andr… 29851 …ndroid/server/pm/LauncherAppsService$LauncherAppsImpl;)Landroid/content/pm/ShortcutServiceInternal; 29857 …sureShortcutPermission(Ljava/lang/String;)V+]Landroid/content/pm/ShortcutServiceInternal;Lcom/andr… 29869 …/String;I)Landroid/os/ParcelFileDescriptor;+]Landroid/content/pm/ShortcutServiceInternal;Lcom/andr… 32754 …m/ShortcutService$LocalService;->addListener(Landroid/content/pm/ShortcutServiceInternal$ShortcutC… 41219 …/usage/UsageStatsService;->getShortcutServiceInternal()Landroid/content/pm/ShortcutServiceInternal; [all …]
|