/packages/modules/Connectivity/framework/src/android/net/ |
D | NetworkInfo.java | 77 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/ |
D | CallState.java | 44 public static final int CONNECTING = TelecomProtoEnums.CONNECTING; // = 1 field in CallState 149 case CONNECTING: in isTransitoryState() 179 case CONNECTING: in toString()
|
D | CallAudioManager.java | 96 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()
|
D | CreateConnectionTimeout.java | 149 || state == CallState.CONNECTING in isCallBeingPlaced()
|
/packages/modules/Bluetooth/system/bta/le_audio/ |
D | metrics_collector_test.cc | 139 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()
|
D | state_machine.cc | 1077 (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/ |
D | DialerCallState.java | 35 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/ |
D | CarStatsServiceTest.java | 89 .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/ |
D | CallAnomalyWatchdogTest.java | 164 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()
|
D | CallAudioManagerTest.java | 271 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/ |
D | NetworkInfo_StateTest.java | 26 assertEquals(State.CONNECTING, State.valueOf("CONNECTING")); in testValueOf() 36 assertEquals(State.CONNECTING, expected[0]); in testValues()
|
D | NetworkInfo_DetailedStateTest.java | 28 assertEquals(DetailedState.CONNECTING, DetailedState.valueOf("CONNECTING")); in testValueOf() 43 assertEquals(DetailedState.CONNECTING, expected[2]); in testValues()
|
D | NetworkInfoTest.kt | 82 assertTrue(State.CONNECTING == netInfo.getState() || in assertNetworkInfo() 85 DetailedState.CONNECTING == netInfo.getDetailedState() || in assertNetworkInfo()
|
/packages/modules/DnsResolver/ |
D | DnsTlsSocket.cpp | 197 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()
|
D | DnsTlsSocket.h | 76 CONNECTING, enumerator
|
/packages/modules/Bluetooth/system/gd/metrics/chromeos/ |
D | metrics_event.cc | 76 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/ |
D | MediaBrowserWrapper.java | 61 CONNECTING, enumConstant 233 case CONNECTING: in browseRequest() 249 mBrowserConnectionState = ConnectionState.CONNECTING; in connect()
|
/packages/modules/Bluetooth/system/include/hardware/ |
D | bt_hearing_aid.h | 28 enum class ConnectionState { DISCONNECTED = 0, CONNECTING, CONNECTED, DISCONNECTING }; enumerator
|
D | bt_csis.h | 34 CONNECTING, enumerator
|
D | bt_has.h | 32 CONNECTING, enumerator
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/sap/ |
D | SapServer.java | 54 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/ |
D | VmsClientLogger.java | 40 public static final int CONNECTING = field in VmsClientLogger.ConnectionState
|
/packages/modules/adb/proto/ |
D | adb_host.proto | 27 CONNECTING = 1; enumerator
|
/packages/modules/Bluetooth/system/gd/rust/topshim/csis/ |
D | csis_shim.cc | 41 case csis::ConnectionState::CONNECTING: in to_rust_btcsis_connection_state()
|
/packages/apps/Dialer/java/com/android/incallui/ |
D | VideoCallPresenter.java | 172 DialerCallState.isDialing(callState) || callState == DialerCallState.CONNECTING; in showIncomingVideo() 724 || callState == DialerCallState.CONNECTING in updateFullscreenAndGreenScreenMode() 1302 || state == DialerCallState.CONNECTING in isOutgoingVideoCall()
|