• Home
  • Raw
  • Download

Lines Matching refs:l

2010     public final Connection addConnectionListener(Listener l) {  in addConnectionListener()  argument
2011 mListeners.add(l); in addConnectionListener()
2023 public final Connection removeConnectionListener(Listener l) { in removeConnectionListener() argument
2024 if (l != null) { in removeConnectionListener()
2025 mListeners.remove(l); in removeConnectionListener()
2125 for (Listener l : mListeners) { in setAddress()
2126 l.onAddressChanged(this, address, presentation); in setAddress()
2142 for (Listener l : mListeners) { in setCallerDisplayName()
2143 l.onCallerDisplayNameChanged(this, callerDisplayName, presentation); in setCallerDisplayName()
2160 for (Listener l : mListeners) { in setVideoState()
2161 l.onVideoStateChanged(this, mVideoState); in setVideoState()
2232 for (Listener l : mListeners) { in setVideoProvider()
2233 l.onVideoProviderChanged(this, videoProvider); in setVideoProvider()
2252 for (Listener l : mListeners) { in setDisconnected()
2253 l.onDisconnected(this, disconnectCause); in setDisconnected()
2269 for (Listener l : mListeners) { in setPostDialWait()
2270 l.onPostDialWait(this, remaining); in setPostDialWait()
2283 for (Listener l : mListeners) { in setNextPostDialChar()
2284 l.onPostDialChar(this, nextChar); in setNextPostDialChar()
2298 for (Listener l : mListeners) { in setRingbackRequested()
2299 l.onRingbackRequested(this, ringback); in setRingbackRequested()
2313 for (Listener l : mListeners) { in setConnectionCapabilities()
2314 l.onConnectionCapabilitiesChanged(this, mConnectionCapabilities); in setConnectionCapabilities()
2328 for (Listener l : mListeners) { in setConnectionProperties()
2329 l.onConnectionPropertiesChanged(this, mConnectionProperties); in setConnectionProperties()
2350 for (Listener l : mListeners) { in setSupportedAudioRoutes()
2351 l.onSupportedAudioRoutesChanged(this, mSupportedAudioRoutes); in setSupportedAudioRoutes()
2360 for (Listener l : mListeners) { in destroy()
2361 l.onDestroyed(this); in destroy()
2373 for (Listener l : mListeners) { in setAudioModeIsVoip()
2374 l.onAudioModeIsVoipChanged(this, isVoip); in setAudioModeIsVoip()
2432 for (Listener l : mListeners) { in setStatusHints()
2433 l.onStatusHintsChanged(this, statusHints); in setStatusHints()
2486 for (Listener l : mListeners) { in resetConnectionTime()
2487 l.onConnectionTimeReset(this); in resetConnectionTime()
2632 for (Listener l : mListeners) { in putExtras()
2635 l.onExtrasChanged(this, new Bundle(listenerExtras)); in putExtras()
2692 for (Listener l : mListeners) { in removeExtras()
2693 l.onExtrasRemoved(this, unmodifiableKeys); in removeExtras()
2720 for (Listener l : mListeners) { in setAudioRoute()
2721 l.onAudioRouteChanged(this, route, null); in setAudioRoute()
2740 for (Listener l : mListeners) { in requestBluetoothAudio()
2741 l.onAudioRouteChanged(this, CallAudioState.ROUTE_BLUETOOTH, in requestBluetoothAudio()
2752 mListeners.forEach((l) -> l.onRttInitiationSuccess(Connection.this)); in sendRttInitiationSuccess()
2763 mListeners.forEach((l) -> l.onRttInitiationFailure(Connection.this, reason)); in sendRttInitiationFailure()
2771 mListeners.forEach((l) -> l.onRttSessionRemotelyTerminated(Connection.this)); in sendRttSessionRemotelyTerminated()
2779 mListeners.forEach((l) -> l.onRemoteRttRequest(Connection.this)); in sendRemoteRttRequest()
3142 for (Listener l : mListeners) { in setState()
3143 l.onStateChanged(this, state); in setState()
3202 for (Listener l : mListeners) { in fireOnConferenceableConnectionsChanged()
3203 l.onConferenceablesChanged(this, getConferenceables()); in fireOnConferenceableConnectionsChanged()
3208 for (Listener l : mListeners) { in fireConferenceChanged()
3209 l.onConferenceChanged(this, mConference); in fireConferenceChanged()
3249 for (Listener l : mListeners) { in notifyConferenceMergeFailed()
3250 l.onConferenceMergeFailed(this); in notifyConferenceMergeFailed()
3262 for (Listener l : mListeners) { in updateConferenceParticipants()
3263 l.onConferenceParticipantsChanged(this, conferenceParticipants); in updateConferenceParticipants()
3272 for (Listener l : mListeners) { in notifyConferenceStarted()
3273 l.onConferenceStarted(); in notifyConferenceStarted()
3285 for (Listener l : mListeners) { in notifyConferenceSupportedChanged()
3286 l.onConferenceSupportedChanged(this, isConferenceSupported); in notifyConferenceSupportedChanged()
3297 for (Listener l : mListeners) { in notifyPhoneAccountChanged()
3298 l.onPhoneAccountChanged(this, pHandle); in notifyPhoneAccountChanged()
3361 for (Listener l : mListeners) { in sendConnectionEvent()
3362 l.onConnectionEvent(this, event, extras); in sendConnectionEvent()