Searched refs:TileServiceKey (Results 1 – 6 of 6) sorted by relevance
28 data class TileServiceKey(val componentName: ComponentName, val user: Int) { dataClass61 fun readState(key: TileServiceKey): Tile? {76 fun persistState(key: TileServiceKey, tile: Tile) {87 fun removeState(key: TileServiceKey) {
99 private final TileServiceKey mKey;121 mKey = new TileServiceKey(mComponent, mUser); in CustomTile()
227 .readState(TileServiceKey(componentName, customTile.user))).thenReturn(t)271 .persistState(TileServiceKey(componentName, customTile.user), t)
50 private val KEY = TileServiceKey(TEST_COMPONENT, TEST_USER)
59 import com.android.systemui.qs.external.TileServiceKey;414 .removeState(new TileServiceKey(CUSTOM_TILE, mQSTileHost.getUserId())); in testCustomTileRemoved_stateDeleted()
50 import com.android.systemui.qs.external.TileServiceKey;463 mCustomTileStatePersister.removeState(new TileServiceKey(component, mCurrentUser)); in changeTiles()