Home
last modified time | relevance | path

Searched refs:TileServiceKey (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DCustomTileStatePersister.kt28 data class TileServiceKey(val componentName: ComponentName, val user: Int) { dataClass
61 fun readState(key: TileServiceKey): Tile? {
76 fun persistState(key: TileServiceKey, tile: Tile) {
87 fun removeState(key: TileServiceKey) {
H A DCustomTile.java99 private final TileServiceKey mKey;
121 mKey = new TileServiceKey(mComponent, mUser); in CustomTile()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
H A DCustomTileTest.kt227 .readState(TileServiceKey(componentName, customTile.user))).thenReturn(t)
271 .persistState(TileServiceKey(componentName, customTile.user), t)
H A DCustomTileStatePersisterTest.kt50 private val KEY = TileServiceKey(TEST_COMPONENT, TEST_USER)
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
H A DQSTileHostTest.java59 import com.android.systemui.qs.external.TileServiceKey;
414 .removeState(new TileServiceKey(CUSTOM_TILE, mQSTileHost.getUserId())); in testCustomTileRemoved_stateDeleted()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileHost.java50 import com.android.systemui.qs.external.TileServiceKey;
463 mCustomTileStatePersister.removeState(new TileServiceKey(component, mCurrentUser)); in changeTiles()