Searched refs:coroutineScope (Results 1 – 10 of 10) sorted by relevance
| /core/core-telecom/src/main/java/androidx/core/telecom/extensions/ |
| D | ExtrasCallExtensionProcessor.kt | 275 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>()
|
| D | ParticipantExtensionImpl.kt | 209 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>()
|
| D | LocalCallSilenceExtensionImpl.kt | 122 coroutineScope: CoroutineScope, in onCreateLocalSilenceExtension() 137 .launchIn(coroutineScope) in onCreateLocalSilenceExtension() 139 val callbackRepository = LocalCallSilenceCallbackRepository(coroutineScope) in onCreateLocalSilenceExtension()
|
| D | CallIconExtensionImpl.kt | 111 coroutineScope: CoroutineScope, in <lambda>() 139 .launchIn(coroutineScope) in <lambda>()
|
| D | CallExtensionScopeImpl.kt | 57 import kotlinx.coroutines.coroutineScope in <lambda>() 335 coroutineScope { in <lambda>()
|
| /core/core-telecom/src/main/java/androidx/core/telecom/internal/ |
| D | AidlExtensions.kt | 50 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/ |
| D | CallAudioRouteResolver.kt | 54 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/ |
| D | CallsManager.kt | 64 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/ |
| D | AudioRouteDialog.kt | 103 val coroutineScope = rememberCoroutineScope() constant 108 coroutineScope.launch { in <lambda>()
|
| /core/core-telecom/src/androidTest/java/androidx/core/telecom/test/utils/ |
| D | BaseTelecomTest.kt | 50 import kotlinx.coroutines.coroutineScope 127 internal suspend fun usingIcs(block: suspend (TestInCallService) -> Unit) = coroutineScope { in <lambda>()
|