Home
last modified time | relevance | path

Searched refs:TileService (Results 1 – 23 of 23) sorted by relevance

/aosp14/frameworks/base/core/tests/coretests/src/android/service/quicksettings/
H A DTileServiceTest.java51 private TileService mTileService;
64 mTileService = new TileService(); in setUp()
70 intent.putExtra(TileService.EXTRA_SERVICE, mIQSService); in testErrorRetrievingTile_nullBinding()
71 intent.putExtra(TileService.EXTRA_TOKEN, mTileToken); in testErrorRetrievingTile_nullBinding()
81 intent.putExtra(TileService.EXTRA_SERVICE, mIQSService); in testNullTile_doesntSendStartSuccessful()
82 intent.putExtra(TileService.EXTRA_TOKEN, mTileToken); in testNullTile_doesntSendStartSuccessful()
94 intent.putExtra(TileService.EXTRA_SERVICE, mIQSService); in testBindSuccessful()
95 intent.putExtra(TileService.EXTRA_TOKEN, mTileToken); in testBindSuccessful()
/aosp14/frameworks/base/core/java/android/service/quicksettings/
H A DTileService.java92 public class TileService extends Service { class
398 String name = TileService.this.getClass().getSimpleName(); in onBind()
455 mTileServiceName = TileService.this.getClass().getSimpleName();
467 TileService.this.onTileAdded();
473 TileService.this.onStopListening();
475 TileService.this.onTileRemoved();
481 TileService.this.onStopListening();
488 TileService.this.onStartListening();
494 TileService.this.onClick();
/aosp14/frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
H A DNekoTile.java21 import android.service.quicksettings.TileService;
27 public class NekoTile extends TileService implements PrefsListener {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DTileLifecycleManager.java18 import static android.service.quicksettings.TileService.START_ACTIVITY_NEEDS_PENDING_INTENT;
37 import android.service.quicksettings.TileService;
123 mIntent.putExtra(TileService.EXTRA_SERVICE, service.asBinder()); in TileLifecycleManager()
124 mIntent.putExtra(TileService.EXTRA_TOKEN, mToken); in TileLifecycleManager()
164 && info.metaData.getBoolean(TileService.META_DATA_ACTIVE_TILE, false); in isActiveTile()
182 && info.metaData.getBoolean(TileService.META_DATA_TOGGLEABLE_TILE, false); in isToggleableTile()
H A DTileServiceManager.java29 import android.service.quicksettings.TileService;
83 new Intent(TileService.ACTION_QS_TILE).setComponent(component), in TileServiceManager()
286 Intent queryIntent = new Intent(TileService.ACTION_QS_TILE);
H A DCustomTile.java38 import android.service.quicksettings.TileService;
380 Intent i = new Intent(TileService.ACTION_QS_TILE_PREFERENCES); in getLongClickIntent()
385 i.putExtra(TileService.EXTRA_STATE, mTile.getState()); in getLongClickIntent()
395 return result != null ? new Intent(TileService.ACTION_QS_TILE_PREFERENCES) in resolveIntent()
/aosp14/frameworks/base/packages/SystemUI/docs/
H A Dqs-tiles.md120 ## Third party tiles (TileService)
122 …is implemented by developers subclassing [`TileService`](/core/java/android/service/quicksettings/
140 #### TileService subsubsection
188TileService` can be declared as an active tile by adding specific meta-data to its manifest (see [
204 …ade to this class, it matches the corresponding token assigned to the `TileService` with the `Comp…
206 As this class is the only one that's aware of every `TileService` that's currently bound, it is als…
214 Each `TileService` gets assigned an exclusive `TileLifecycleManager` when its corresponding tile is…
218 …`TileServices` controller and a `TileLifecycleManager` corresponding to a particular `TileService`.
223 * Relaying messages to the `TileService` through the `TileLifecycleManager`.
284 … the proper binding to the service as described in [Third party tiles (TileService)](#third-party-…
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/data/repository/
H A DInstalledTilesComponentRepository.kt29 import android.service.quicksettings.TileService
115 private val INTENT = Intent(TileService.ACTION_QS_TILE)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
H A DTileLifecycleManagerTest.java18 import static android.service.quicksettings.TileService.START_ACTIVITY_NEEDS_PENDING_INTENT;
55 import android.service.quicksettings.TileService;
142 defaultServiceInfo.metaData.putBoolean(TileService.META_DATA_ACTIVE_TILE, true); in setPackageEnabled()
143 defaultServiceInfo.metaData.putBoolean(TileService.META_DATA_TOGGLEABLE_TILE, true); in setPackageEnabled()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/statusbar/
H A DStatusBarManagerServiceTest.java58 import android.service.quicksettings.TileService;
340 new Intent(TileService.ACTION_QS_TILE).setComponent(TEST_COMPONENT)); in testValidComponent_fail_noComponentFound()
360 new Intent(TileService.ACTION_QS_TILE).setComponent(TEST_COMPONENT)); in testValidComponent_fail_notEnabled()
382 new Intent(TileService.ACTION_QS_TILE).setComponent(TEST_COMPONENT)); in testValidComponent_fail_noPermission()
406 new Intent(TileService.ACTION_QS_TILE).setComponent(TEST_COMPONENT)); in testValidComponent_fail_notExported()
430 new Intent(TileService.ACTION_QS_TILE).setComponent(TEST_COMPONENT)); in testValidComponent_pass()
747 new Intent(TileService.ACTION_QS_TILE).setComponent(componentName)); in mockComponentInfo()
/aosp14/frameworks/base/services/core/java/com/android/server/statusbar/
H A DStatusBarShellCommand.java29 import android.service.quicksettings.TileService;
68 pw.println(String.valueOf(TileService.isQuickSettingsSupported())); in onCommand()
H A DStatusBarManagerService.java80 import android.service.quicksettings.TileService;
1929 Intent intent = new Intent(TileService.ACTION_QS_TILE); in isComponentValidTileService()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/pipeline/data/repository/
H A DInstalledTilesComponentRepositoryImplTest.kt31 import android.service.quicksettings.TileService
290 private val INTENT = Intent(TileService.ACTION_QS_TILE)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileQueryHelper.java29 import android.service.quicksettings.TileService;
215 new Intent(TileService.ACTION_QS_TILE), 0, mUserTracker.getUserId()); in addPackageTiles()
/aosp14/frameworks/base/boot/
H A Dpreloaded-classes6990 android.service.quicksettings.TileService$2
6991 android.service.quicksettings.TileService$H
6992 android.service.quicksettings.TileService
H A Dboot-image-profile.txt29783 Landroid/service/quicksettings/TileService$2;
29784 Landroid/service/quicksettings/TileService$H;
29785 Landroid/service/quicksettings/TileService;
/aosp14/frameworks/base/core/api/
H A Dtest-current.txt3006 public class TileService extends android.app.Service {
H A Dsystem-current.txt12687 public class TileService extends android.app.Service {
H A Dcurrent.txt41225 public class TileService extends android.app.Service {
41226 ctor public TileService();
/aosp14/frameworks/base/config/
H A Dpreloaded-classes6994 android.service.quicksettings.TileService$2
6995 android.service.quicksettings.TileService$H
6996 android.service.quicksettings.TileService
H A Dboot-image-profile.txt39890 Landroid/service/quicksettings/TileService$2;
39891 Landroid/service/quicksettings/TileService$H;
39892 Landroid/service/quicksettings/TileService;
/aosp14/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt50201 Landroid/service/quicksettings/TileService$H;->MSG_START_LISTENING:I
50202 Landroid/service/quicksettings/TileService$H;->MSG_START_SUCCESS:I
50203 Landroid/service/quicksettings/TileService$H;->MSG_STOP_LISTENING:I
50204 Landroid/service/quicksettings/TileService$H;->MSG_TILE_ADDED:I
50205 Landroid/service/quicksettings/TileService$H;->MSG_TILE_CLICKED:I
50206 Landroid/service/quicksettings/TileService$H;->MSG_TILE_REMOVED:I
50207 Landroid/service/quicksettings/TileService$H;->MSG_UNLOCK_COMPLETE:I
50210 Landroid/service/quicksettings/TileService;->EXTRA_STATE:Ljava/lang/String;
50212 Landroid/service/quicksettings/TileService;->mHandler:Landroid/service/quicksettings/TileService$H;
50213 Landroid/service/quicksettings/TileService;->mListening:Z
[all …]
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...