Home
last modified time | relevance | path

Searched refs:CONNECTING (Results 1 – 25 of 63) sorted by relevance

123

/packages/modules/Connectivity/framework/src/android/net/
DNetworkInfo.java77 CONNECTING, CONNECTED, SUSPENDED, DISCONNECTING, DISCONNECTED, UNKNOWN enumConstant
94 CONNECTING, enumConstant
128 stateMap.put(DetailedState.CONNECTING, State.CONNECTING); in stateMap.put() argument
129 stateMap.put(DetailedState.AUTHENTICATING, State.CONNECTING); in stateMap.put() argument
130 stateMap.put(DetailedState.OBTAINING_IPADDR, State.CONNECTING); in stateMap.put() argument
131 stateMap.put(DetailedState.VERIFYING_POOR_LINK, State.CONNECTING); in stateMap.put() argument
132 stateMap.put(DetailedState.CAPTIVE_PORTAL_CHECK, State.CONNECTING); in stateMap.put() argument
312 return mState == State.CONNECTED || mState == State.CONNECTING; in isConnectedOrConnecting()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallState.java44 public static final int CONNECTING = TelecomProtoEnums.CONNECTING; // = 1 field in CallState
149 case CONNECTING: in isTransitoryState()
179 case CONNECTING: in toString()
DCallAudioManager.java96 put(CallState.CONNECTING, mActiveDialingOrConnectingCalls); in CallAudioManager()
685 case CallState.CONNECTING: in onCallLeavingState()
712 case CallState.CONNECTING: in onCallEnteringState()
843 if (call.getState() == CallState.CONNECTING) { in updateForegroundCall()
DCreateConnectionTimeout.java149 || state == CallState.CONNECTING in isCallBeingPlaced()
/packages/modules/Bluetooth/system/bta/le_audio/
Dmetrics_collector_test.cc139 bluetooth::le_audio::ConnectionState::CONNECTING, in TEST_F()
154 bluetooth::le_audio::ConnectionState::CONNECTING, in TEST_F()
177 bluetooth::le_audio::ConnectionState::CONNECTING, in TEST_F()
198 bluetooth::le_audio::ConnectionState::CONNECTING, in TEST_F()
221 bluetooth::le_audio::ConnectionState::CONNECTING, in TEST_F()
248 bluetooth::le_audio::ConnectionState::CONNECTING, in TEST_F()
281 bluetooth::le_audio::ConnectionState::CONNECTING, in TEST_F()
287 bluetooth::le_audio::ConnectionState::CONNECTING, in TEST_F()
329 bluetooth::le_audio::ConnectionState::CONNECTING, in TEST_F()
345 bluetooth::le_audio::ConnectionState::CONNECTING, in TEST_F()
Dstate_machine.cc1077 (ases_pair.sink && ases_pair.sink->cis_state == CisState::CONNECTING) || in ProcessHciNotifCisEstablished()
1078 (ases_pair.source && ases_pair.source->cis_state == CisState::CONNECTING); in ProcessHciNotifCisEstablished()
1727 if (ase->cis_state == CisState::CONNECTING || ase->cis_state == CisState::CONNECTED) { in CisCreateForDevice()
1732 ases_pair.sink->cis_state = CisState::CONNECTING; in CisCreateForDevice()
1735 ases_pair.source->cis_state = CisState::CONNECTING; in CisCreateForDevice()
1777 if (ase->cis_state == CisState::CONNECTING) { in CisCreate()
1782 ases_pair.sink->cis_state = CisState::CONNECTING; in CisCreate()
1785 ases_pair.source->cis_state = CisState::CONNECTING; in CisCreate()
2874 if (ase->cis_state < CisState::CONNECTING) { in AseStateMachineProcessEnabling()
3175 ase->cis_state == CisState::CONNECTING) && in AseStateMachineProcessReleasing()
/packages/apps/Dialer/java/com/android/incallui/call/state/
DDialerCallState.java35 public static final int CONNECTING = 13; /* Waiting for Telecom broadcast to finish */ field in DialerCallState
45 case CONNECTING: in isConnectingOrConnected()
91 case CONNECTING: in toString()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/stats/
DCarStatsServiceTest.java89 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_Connecting()
124 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_UnknownUID()
131 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_MultipleClients_MultipleStates()
140 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_MultipleClients_MultipleStates()
146 .logConnectionState(ConnectionState.CONNECTING); in testLogConnectionState_MultipleClients_MultipleStates()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallAnomalyWatchdogTest.java164 assertTrue(new CallAnomalyWatchdog.WatchdogCallState(CallState.CONNECTING, in testAnomalyCallStateIsTransitory()
191 assertTrue(new CallAnomalyWatchdog.WatchdogCallState(CallState.CONNECTING, in testAnomalyCallStateIsTransitory()
233 assertFalse(new CallAnomalyWatchdog.WatchdogCallState(CallState.CONNECTING, in testAnomalyCallStateIsIntermediate()
263 assertFalse(new CallAnomalyWatchdog.WatchdogCallState(CallState.CONNECTING, in testAnomalyCallStateIsIntermediate()
627 Call call = setupCallHelper(CallState.CONNECTING, false, null, true, false); in testVoipPlaceCallTimeout()
651 Call call = setupCallHelper(CallState.CONNECTING, false, null, true, false); in testVoipPlaceCallTimeoutReportAnomaly()
675 Call call = setupCallHelper(CallState.CONNECTING, false, null, true, true); in testVoipEmergencyPlaceCallTimeoutReportAnomaly()
699 Call call = setupCallHelper(CallState.CONNECTING, false, null, true, true); in testVoipEmergencyPlaceCallTimeout()
724 Call call = setupCallHelper(CallState.CONNECTING, false, null, false, false); in testNonVoipPlaceCallTimeout()
748 Call call = setupCallHelper(CallState.CONNECTING, false, null, false, true); in testNonVoipEmergencyPlaceCallTimeout()
DCallAudioManagerTest.java271 when(call.getState()).thenReturn(CallState.CONNECTING);
292 mCallAudioManager.onCallStateChanged(call, CallState.CONNECTING, CallState.DIALING);
335 when(call.getState()).thenReturn(CallState.CONNECTING);
357 mCallAudioManager.onCallStateChanged(call, CallState.CONNECTING, CallState.DIALING);
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DNetworkInfo_StateTest.java26 assertEquals(State.CONNECTING, State.valueOf("CONNECTING")); in testValueOf()
36 assertEquals(State.CONNECTING, expected[0]); in testValues()
DNetworkInfo_DetailedStateTest.java28 assertEquals(DetailedState.CONNECTING, DetailedState.valueOf("CONNECTING")); in testValueOf()
43 assertEquals(DetailedState.CONNECTING, expected[2]); in testValues()
DNetworkInfoTest.kt82 assertTrue(State.CONNECTING == netInfo.getState() || in assertNetworkInfo()
85 DetailedState.CONNECTING == netInfo.getDetailedState() || in assertNetworkInfo()
/packages/modules/DnsResolver/
DDnsTlsSocket.cpp197 transitionState(State::INITIALIZED, State::CONNECTING); in startHandshake()
201 transitionState(State::CONNECTING, State::WAIT_FOR_DELETE); in startHandshake()
206 transitionState(State::CONNECTING, State::WAIT_FOR_DELETE); in startHandshake()
408 transitionState(State::CONNECTING, State::WAIT_FOR_DELETE); in loop()
414 transitionState(State::CONNECTING, State::WAIT_FOR_DELETE); in loop()
420 transitionState(State::CONNECTING, State::CONNECTED); in loop()
DDnsTlsSocket.h76 CONNECTING, enumerator
/packages/modules/Bluetooth/system/gd/metrics/chromeos/
Dmetrics_event.cc76 CONNECTING, enumerator
399 output.second = (uint32_t)ProfilesConnectionState::CONNECTING; in ToProfileConnectionState()
423 output.second = (uint32_t)ProfilesConnectionState::CONNECTING; in ToProfileConnectionState()
445 output.second = (uint32_t)ProfilesConnectionState::CONNECTING; in ToProfileConnectionState()
468 output.second = (uint32_t)ProfilesConnectionState::CONNECTING; in ToProfileConnectionState()
478 output.second = (uint32_t)ProfilesConnectionState::CONNECTING; in ToProfileConnectionState()
526 case ProfilesConnectionState::CONNECTING: in ToProfileConnectionEvent()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/audio_util/
DMediaBrowserWrapper.java61 CONNECTING, enumConstant
233 case CONNECTING: in browseRequest()
249 mBrowserConnectionState = ConnectionState.CONNECTING; in connect()
/packages/modules/Bluetooth/system/include/hardware/
Dbt_hearing_aid.h28 enum class ConnectionState { DISCONNECTED = 0, CONNECTING, CONNECTED, DISCONNECTING }; enumerator
Dbt_csis.h34 CONNECTING, enumerator
Dbt_has.h32 CONNECTING, enumerator
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/sap/
DSapServer.java54 CONNECTING, enumConstant
581 if (mState == SAP_STATE.CONNECTING) { in onConnectRequest()
605 changeState(SAP_STATE.CONNECTING); in onConnectRequest()
885 || mState == SAP_STATE.CONNECTING in handleRfcommReply()
/packages/services/Car/service/src/com/android/car/stats/
DVmsClientLogger.java40 public static final int CONNECTING = field in VmsClientLogger.ConnectionState
/packages/modules/adb/proto/
Dadb_host.proto27 CONNECTING = 1; enumerator
/packages/modules/Bluetooth/system/gd/rust/topshim/csis/
Dcsis_shim.cc41 case csis::ConnectionState::CONNECTING: in to_rust_btcsis_connection_state()
/packages/apps/Dialer/java/com/android/incallui/
DVideoCallPresenter.java172 DialerCallState.isDialing(callState) || callState == DialerCallState.CONNECTING; in showIncomingVideo()
724 || callState == DialerCallState.CONNECTING in updateFullscreenAndGreenScreenMode()
1302 || state == DialerCallState.CONNECTING in isOutgoingVideoCall()

123