Home
last modified time | relevance | path

Searched refs:activeParticipant (Results 1 – 7 of 7) sorted by relevance

/core/core-telecom/integration-tests/testicsapp/src/main/java/androidx/core/telecom/test/services/
DCallDataEmitters.kt204 private val activeParticipant: MutableStateFlow<Participant?> = MutableStateFlow(null) constant in androidx.core.telecom.test.services.ParticipantExtensionDataEmitter
214 activeParticipant.value = participant in onActiveParticipantChanged()
228 .combine(activeParticipant) { newParticipants, newActiveParticipant -> in collect()
234 activeParticipant = data.activeParticipant, in collect()
244 activeParticipant = data.activeParticipant, in collect()
255 activeParticipant: Participant? = null, in createExtensionData()
260 return ParticipantExtensionData(isSupported, activeParticipant, self, participants) in createExtensionData()
DCallData.kt88 val activeParticipant: Participant?, constant in androidx.core.telecom.test.services.ParticipantExtensionData
/core/core-telecom/src/main/java/androidx/core/telecom/extensions/
DParticipantExtensionImpl.kt101 private val activeParticipant: MutableStateFlow<Participant?> = in <lambda>() constant
112 activeParticipant.emit(participant) in <lambda>()
215 val initActiveParticipant = activeParticipant.value?.name.toString() in <lambda>()
224 .combine(activeParticipant) { p, a -> in <lambda>()
255 val initActiveParticipant = activeParticipant.value in <lambda>()
269 .combine(activeParticipant) { p, a -> in <lambda>()
DParticipantExtensionRemoteImpl.kt225 .onEach { activeParticipant -> onActiveParticipantChanged(activeParticipant) } in initializeParticipantUpdates() method
/core/core-telecom/integration-tests/testapp/src/main/java/androidx/core/telecom/test/
DParticipantsExtensionManager.kt89 val activeParticipant = participants.getOrNull(nextActive) in <lambda>() constant
95 isActive = activeParticipant?.id == p.id, in <lambda>()
/core/core-telecom/src/main/java/androidx/core/telecom/internal/
DAidlExtensions.kt114 fun updateActiveParticipant(activeParticipant: Participant?) { in updateActiveParticipant()
115 binder.updateActiveParticipant(activeParticipant?.id) in updateActiveParticipant()
/core/core-telecom/integration-tests/testicsapp/src/main/java/androidx/core/telecom/test/ui/calling/
DOngoingCallsViewModel.kt218 isActive = participantExtensionData.activeParticipant == p, in <lambda>()