Home
last modified time | relevance | path

Searched refs:coroutineScope (Results 1 – 10 of 10) sorted by relevance

/core/core-telecom/src/main/java/androidx/core/telecom/extensions/
DExtrasCallExtensionProcessor.kt275 r.onMeetingSummaryExtension = { coroutineScope, binder -> in <lambda>() method
276 mSpeakerNameFlow.onEach { binder.updateCurrentSpeaker(it) }.launchIn(coroutineScope) in <lambda>()
279 .launchIn(coroutineScope) in <lambda>()
292 r.onCreateLocalCallSilenceExtension = { coroutineScope, _, binder -> in <lambda>() method
295 .launchIn(coroutineScope) in <lambda>()
325 r.onCreateCallIconExtension = { coroutineScope, _, _, binder -> in <lambda>() method
326 mUriFlow.onEach { binder.updateCallIconUri(it) }.launchIn(coroutineScope) in <lambda>()
DParticipantExtensionImpl.kt209 coroutineScope: CoroutineScope, in <lambda>()
234 .launchIn(coroutineScope) in <lambda>()
247 coroutineScope: CoroutineScope, in <lambda>()
279 .launchIn(coroutineScope) in <lambda>()
283 val callbackRepository = ParticipantActionCallbackRepository(coroutineScope) in <lambda>()
288 .forEach { initializer -> initializer(coroutineScope, callbackRepository, binder) } in <lambda>()
DLocalCallSilenceExtensionImpl.kt122 coroutineScope: CoroutineScope, in onCreateLocalSilenceExtension()
137 .launchIn(coroutineScope) in onCreateLocalSilenceExtension()
139 val callbackRepository = LocalCallSilenceCallbackRepository(coroutineScope) in onCreateLocalSilenceExtension()
DCallIconExtensionImpl.kt111 coroutineScope: CoroutineScope, in <lambda>()
139 .launchIn(coroutineScope) in <lambda>()
DCallExtensionScopeImpl.kt57 import kotlinx.coroutines.coroutineScope in <lambda>()
335 coroutineScope { in <lambda>()
/core/core-telecom/src/main/java/androidx/core/telecom/internal/
DAidlExtensions.kt50 internal class ParticipantActionCallbackRepository(coroutineScope: CoroutineScope) {
72 coroutineScope.launch { in setHandRaised()
82 coroutineScope.launch { in kickParticipant()
204 internal class LocalCallSilenceCallbackRepository(coroutineScope: CoroutineScope) {
214 coroutineScope.launch { in setIsLocallySilenced()
/core/core-telecom/integration-tests/testicsapp/src/main/java/androidx/core/telecom/test/services/
DCallAudioRouteResolver.kt54 private val coroutineScope: CoroutineScope, in <lambda>() constant in androidx.core.telecom.test.services.CallAudioRouteResolver
96 .launchIn(coroutineScope) in <lambda>()
117 .launchIn(coroutineScope) in <lambda>()
150 return coroutineScope.async { onRequestEndpointChange(endpoint) }.await() in <lambda>()
/core/core-telecom/src/main/java/androidx/core/telecom/
DCallsManager.kt64 import kotlinx.coroutines.coroutineScope in <lambda>()
274 ): Unit = coroutineScope { in <lambda>()
327 ): Unit = coroutineScope { in <lambda>()
/core/core-telecom/integration-tests/testicsapp/src/main/java/androidx/core/telecom/test/ui/calling/
DAudioRouteDialog.kt103 val coroutineScope = rememberCoroutineScope() constant
108 coroutineScope.launch { in <lambda>()
/core/core-telecom/src/androidTest/java/androidx/core/telecom/test/utils/
DBaseTelecomTest.kt50 import kotlinx.coroutines.coroutineScope
127 internal suspend fun usingIcs(block: suspend (TestInCallService) -> Unit) = coroutineScope { in <lambda>()