/frameworks/base/services/core/java/com/android/server/pm/ |
D | ShortcutRequestPinProcessor.java | 25 import android.content.pm.LauncherApps; 26 import android.content.pm.LauncherApps.PinItemRequest; 289 return new Intent().putExtra(LauncherApps.EXTRA_PIN_ITEM_REQUEST, request); in createShortcutResultIntent() 386 final String action = requestType == LauncherApps.PinItemRequest.REQUEST_TYPE_SHORTCUT ? in startRequestConfirmActivity() 387 LauncherApps.ACTION_CONFIRM_PIN_SHORTCUT : in startRequestConfirmActivity() 388 LauncherApps.ACTION_CONFIRM_PIN_APPWIDGET; in startRequestConfirmActivity() 393 confirmIntent.putExtra(LauncherApps.EXTRA_PIN_ITEM_REQUEST, request); in startRequestConfirmActivity()
|
D | ShortcutService.java | 39 import android.content.pm.LauncherApps; 40 import android.content.pm.LauncherApps.ShortcutQuery; 3279 String action = requestType == LauncherApps.PinItemRequest.REQUEST_TYPE_SHORTCUT ? in injectGetPinConfirmationActivity() 3280 LauncherApps.ACTION_CONFIRM_PIN_SHORTCUT : in injectGetPinConfirmationActivity() 3281 LauncherApps.ACTION_CONFIRM_PIN_APPWIDGET; in injectGetPinConfirmationActivity()
|
D | LauncherAppsService.java | 34 import android.content.pm.LauncherApps.ShortcutQuery;
|
/frameworks/base/core/java/android/content/pm/ |
D | LauncherApps.java | 84 public class LauncherApps { class 398 public LauncherApps(Context context, ILauncherApps service) { in LauncherApps() method in LauncherApps 407 public LauncherApps(Context context) { in LauncherApps() method in LauncherApps 1053 synchronized (LauncherApps.this) { 1065 synchronized (LauncherApps.this) { 1077 synchronized (LauncherApps.this) { 1090 synchronized (LauncherApps.this) { 1103 synchronized (LauncherApps.this) { 1116 synchronized (LauncherApps.this) { 1129 synchronized (LauncherApps.this) { [all …]
|
D | ShortcutServiceInternal.java | 26 import android.content.pm.LauncherApps.ShortcutQuery;
|
D | ShortcutManager.java | 965 LauncherApps.PinItemRequest.REQUEST_TYPE_SHORTCUT); in isRequestPinShortcutSupported()
|
D | ShortcutInfo.java | 26 import android.content.pm.LauncherApps.ShortcutQuery;
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | ShortcutManagerTest9.java | 32 import android.content.pm.LauncherApps; 33 import android.content.pm.LauncherApps.PinItemRequest; 75 assertEquals(LauncherApps.ACTION_CONFIRM_PIN_APPWIDGET, actualIntent.getAction()); in assertPinItemRequestIntent()
|
D | ShortcutManagerTest10.java | 25 import android.content.pm.LauncherApps.PinItemRequest;
|
D | ShortcutManagerTest1.java | 73 import android.content.pm.LauncherApps; 74 import android.content.pm.LauncherApps.ShortcutQuery; 2969 final LauncherApps.Callback c0_1 = mock(LauncherApps.Callback.class); in testLauncherCallback_crossProfile() 2970 final LauncherApps.Callback c0_2 = mock(LauncherApps.Callback.class); in testLauncherCallback_crossProfile() 2971 final LauncherApps.Callback c0_3 = mock(LauncherApps.Callback.class); in testLauncherCallback_crossProfile() 2972 final LauncherApps.Callback c0_4 = mock(LauncherApps.Callback.class); in testLauncherCallback_crossProfile() 2974 final LauncherApps.Callback cP0_1 = mock(LauncherApps.Callback.class); in testLauncherCallback_crossProfile() 2975 final LauncherApps.Callback cP1_1 = mock(LauncherApps.Callback.class); in testLauncherCallback_crossProfile() 2976 final LauncherApps.Callback c10_1 = mock(LauncherApps.Callback.class); in testLauncherCallback_crossProfile() 2977 final LauncherApps.Callback c10_2 = mock(LauncherApps.Callback.class); in testLauncherCallback_crossProfile() [all …]
|
D | ShortcutManagerTest8.java | 37 import android.content.pm.LauncherApps; 38 import android.content.pm.LauncherApps.PinItemRequest; 214 assertEquals(LauncherApps.ACTION_CONFIRM_PIN_SHORTCUT, actualIntent.getAction()); in assertPinItemRequestIntent()
|
D | BaseShortcutManagerTest.java | 55 import android.content.pm.LauncherApps; 56 import android.content.pm.LauncherApps.ShortcutQuery; 528 protected class LauncherAppsTestable extends LauncherApps {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/ |
D | ShortcutPicker.java | 21 import android.content.pm.LauncherApps; 61 LauncherApps apps = getContext().getSystemService(LauncherApps.class); in onCreatePreferences()
|
D | LockscreenFragment.java | 24 import android.content.pm.LauncherApps; 25 import android.content.pm.LauncherApps.ShortcutQuery;
|
/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/ |
D | ShortcutManagerTestUtils.java | 38 import android.content.pm.LauncherApps; 39 import android.content.pm.LauncherApps.Callback; 628 public static void assertCallbackNotReceived(LauncherApps.Callback mock) { in assertCallbackNotReceived() 633 public static void assertCallbackReceived(LauncherApps.Callback mock, in assertCallbackReceived() 1058 private final LauncherApps.Callback mCallback = mock(LauncherApps.Callback.class); 1102 LauncherApps launcherApps, Runnable body) throws InterruptedException { in assertForLauncherCallback() 1118 LauncherApps launcherApps, Runnable body) { in assertForLauncherCallbackNoThrow()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/appwidget/ |
D | AppWidgetServiceImplTest.java | 38 import android.content.pm.LauncherApps; 133 eq(LauncherApps.PinItemRequest.REQUEST_TYPE_APPWIDGET)); in testIsRequestPinAppWidgetSupported()
|
/frameworks/base/core/java/android/appwidget/ |
D | AppWidgetHostView.java | 22 import android.content.pm.LauncherApps; 500 LauncherApps launcherApps = getContext().getSystemService(LauncherApps.class); in updateContentDescription()
|
/frameworks/base/core/java/android/app/ |
D | SystemServiceRegistry.java | 40 import android.content.pm.LauncherApps; 625 registerService(Context.LAUNCHER_APPS_SERVICE, LauncherApps.class, in registerService() 626 new CachedServiceFetcher<LauncherApps>() { in registerService() 628 public LauncherApps createService(ContextImpl ctx) { in registerService() 629 return new LauncherApps(ctx); in registerService()
|
/frameworks/base/services/appwidget/java/com/android/server/appwidget/ |
D | AppWidgetServiceImpl.java | 45 import android.content.pm.LauncherApps; 1598 LauncherApps.PinItemRequest.REQUEST_TYPE_APPWIDGET); in isRequestPinAppWidgetSupported()
|
/frameworks/base/ |
D | compiled-classes-phone | 1016 android.content.pm.LauncherApps 1017 android.content.pm.LauncherApps$1 1018 android.content.pm.LauncherApps$Callback 1019 android.content.pm.LauncherApps$CallbackMessageHandler 1020 android.content.pm.LauncherApps$CallbackMessageHandler$CallbackInfo 1021 android.content.pm.LauncherApps$ShortcutQuery
|
D | preloaded-classes | 800 android.content.pm.LauncherApps
|
/frameworks/base/api/ |
D | current.txt | 10322 public class LauncherApps { 10325 …method public android.content.pm.LauncherApps.PinItemRequest getPinItemRequest(android.content.Int… 10331 …List<android.content.pm.ShortcutInfo> getShortcuts(android.content.pm.LauncherApps.ShortcutQuery, … 10336 method public void registerCallback(android.content.pm.LauncherApps.Callback); 10337 … method public void registerCallback(android.content.pm.LauncherApps.Callback, android.os.Handler); 10343 method public void unregisterCallback(android.content.pm.LauncherApps.Callback); 10349 public static abstract class LauncherApps.Callback { 10350 ctor public LauncherApps.Callback(); 10361 public static final class LauncherApps.PinItemRequest implements android.os.Parcelable { 10371 …field public static final android.os.Parcelable.Creator<android.content.pm.LauncherApps.PinItemReq… [all …]
|
D | system-current.txt | 10993 public class LauncherApps { 10996 …method public android.content.pm.LauncherApps.PinItemRequest getPinItemRequest(android.content.Int… 11002 …List<android.content.pm.ShortcutInfo> getShortcuts(android.content.pm.LauncherApps.ShortcutQuery, … 11007 method public void registerCallback(android.content.pm.LauncherApps.Callback); 11008 … method public void registerCallback(android.content.pm.LauncherApps.Callback, android.os.Handler); 11014 method public void unregisterCallback(android.content.pm.LauncherApps.Callback); 11020 public static abstract class LauncherApps.Callback { 11021 ctor public LauncherApps.Callback(); 11032 public static final class LauncherApps.PinItemRequest implements android.os.Parcelable { 11042 …field public static final android.os.Parcelable.Creator<android.content.pm.LauncherApps.PinItemReq… [all …]
|
/frameworks/base/services/ |
D | profile-classes | 559 Landroid/content/pm/LauncherApps;
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 8517 public class LauncherApps { 8521 method public void registerCallback(android.content.pm.LauncherApps.Callback); 8522 … method public void registerCallback(android.content.pm.LauncherApps.Callback, android.os.Handler); 8526 method public void unregisterCallback(android.content.pm.LauncherApps.Callback); 8529 public static abstract class LauncherApps.Callback { 8530 ctor public LauncherApps.Callback();
|