Searched refs:OverlayPlugin (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/plugins/ |
D | VersionInfoTest.java | 23 import com.android.systemui.plugins.OverlayPlugin; 45 info.addClass(OverlayPlugin.class); in testHasInfo() 51 VersionInfo overlay = new VersionInfo().addClass(OverlayPlugin.class); in testSingleProvides() 58 VersionInfo overlay = new VersionInfo().addClass(OverlayPlugin.class); in testIncorrectVersion() 66 VersionInfo overlay = new VersionInfo().addClass(OverlayPlugin.class); in testMissingRequired() 87 @Requires(target = OverlayPlugin.class, version = OverlayPlugin.VERSION) 91 @Requires(target = OverlayPlugin.class, version = 0)
|
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/ |
D | OverlayPlugin.java | 21 @ProvidesInterface(action = OverlayPlugin.ACTION, version = OverlayPlugin.VERSION) 22 public interface OverlayPlugin extends Plugin { interface
|
/frameworks/base/packages/SystemUI/plugin/ExamplePlugin/src/com/android/systemui/plugin/testoverlayplugin/ |
D | SampleOverlayPlugin.java | 26 import com.android.systemui.plugins.OverlayPlugin; 29 @Requires(target = OverlayPlugin.class, version = OverlayPlugin.VERSION) 30 public class SampleOverlayPlugin implements OverlayPlugin {
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | ExtensionControllerImplTest.java | 33 import com.android.systemui.plugins.OverlayPlugin; 80 OverlayPlugin plugin = mock(OverlayPlugin.class); in testPlugin() 82 Extension ext = mExtensionController.newExtension(OverlayPlugin.class) in testPlugin() 83 .withPlugin(OverlayPlugin.class) in testPlugin() 86 verify(mPluginManager).addPluginListener(eq(OverlayPlugin.ACTION), listener.capture(), in testPlugin() 87 eq(OverlayPlugin.class)); in testPlugin()
|
/frameworks/base/packages/SystemUI/docs/ |
D | plugin_hooks.md | 3 Expected interface: [OverlayPlugin](/frameworks/base/packages/SystemUI/plugin/src/com/android/syste…
|
D | plugins.md | 102 @Requires(target = OverlayPlugin.class, version = OverlayPlugin.VERSION) 103 public class SampleOverlayPlugin implements OverlayPlugin {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | CentralSurfacesImpl.java | 155 import com.android.systemui.plugins.OverlayPlugin; 1027 new PluginListener<OverlayPlugin>() { in start() 1028 private final ArraySet<OverlayPlugin> mOverlays = new ArraySet<>(); in start() 1031 public void onPluginConnected(OverlayPlugin plugin, Context pluginContext) { in start() 1040 public void onPluginDisconnected(OverlayPlugin plugin) { in start() 1048 class Callback implements OverlayPlugin.Callback { in start() 1049 private final OverlayPlugin mPlugin; in start() 1051 Callback(OverlayPlugin plugin) { in start() 1071 }, OverlayPlugin.class, true /* Allow multiple plugins */); in start()
|