Searched refs:getFlow (Results 1 – 4 of 4) sorted by relevance
31 return getFlow(userId).asStateFlow().also { Log.d("Fabian", "Retrieving flow for $userId") }36 with(getFlow(userId)) {49 with(getFlow(userId)) {56 getFlow(userId).value = tiles.filter { it != TileSpec.Invalid }59 private fun getFlow(userId: Int): MutableStateFlow<List<TileSpec>> = regex
28 return getFlow(userId)33 with(getFlow(userId)) { value = value.toMutableSet().apply { add(spec) } }37 with(getFlow(userId)) { value = value.toMutableSet().apply { remove(spec) } }40 private fun getFlow(userId: Int): MutableStateFlow<Set<TileSpec>> = regex
30 return getFlow(userId).asStateFlow()34 getFlow(userId).value = components37 private fun getFlow(userId: Int): MutableStateFlow<Set<ComponentName>> = regex
35 private fun getFlow(userId: Int): MutableStateFlow<AutoAddSignal?> = regex39 return getFlow(userId).asStateFlow().filterNotNull()43 getFlow(userId).value = AutoAddSignal.Remove(spec)47 getFlow(userId).value = AutoAddSignal.Add(spec, position)