Home
last modified time | relevance | path

Searched refs:getConnections (Results 1 – 19 of 19) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/entitlement/http/
DHttpClientTest.java128 assertThat(sFakeURLStreamHandler.getConnections()).hasSize(1); in request_contentTypeXml_returnsXmlBody()
129 HttpURLConnection connection = sFakeURLStreamHandler.getConnections().get(0); in request_contentTypeXml_returnsXmlBody()
163 assertThat(sFakeURLStreamHandler.getConnections()).hasSize(1); in request_httpGetResponseBadRequest_throwsException()
164 HttpURLConnection connection = sFakeURLStreamHandler.getConnections().get(0); in request_httpGetResponseBadRequest_throwsException()
223 FakeHttpsURLConnection connection = sFakeURLStreamHandler.getConnections().get(0); in request_postJson_doNotEscapeForwardSlash()
247 assertThat(sFakeURLStreamHandler.getConnections()).hasSize(1); in request_postGzipJsonArray()
248 FakeHttpsURLConnection connection = sFakeURLStreamHandler.getConnections().get(0); in request_postGzipJsonArray()
272 assertThat(sFakeURLStreamHandler.getConnections()).hasSize(1); in request_postJsonArray()
273 FakeHttpsURLConnection connection = sFakeURLStreamHandler.getConnections().get(0); in request_postJsonArray()
DFakeURLStreamHandler.java80 public ImmutableList<FakeHttpsURLConnection> getConnections() { in getConnections() method in FakeURLStreamHandler
/packages/services/Telephony/src/com/android/services/telephony/
DTelephonyConference.java54 for (Connection connection : getConnections()) { in onDisconnect()
185 List<Connection> connections = getConnections(); in getPrimaryConnection()
246 final List<Connection> connections = getConnections(); in getFirstConnection()
DCdmaConference.java169 List<Connection> connections = getConnections(); in getOriginalCall()
214 final List<Connection> connections = getConnections(); in getFirstConnection()
DTelephonyConferenceController.java113 return conference.getConnections().size() >= TELEPHONY_CONFERENCE_MAX_SIZE; in isFullConference()
229 List<Connection> existingConnections = mTelephonyConference.getConnections(); in recalculateConference()
DTelephonyConferenceBase.java136 Iterator<Connection> connectionIterator = getConnections().iterator(); in destroyTelephonyConference()
DCdmaConferenceController.java204 new ArrayList<>(mConference.getConnections()); in recalculateConference()
DImsConference.java1554 for (Connection c : getConnections()) { in updateStatusHints()
1573 for (Connection c : getConnections()) { in updateConnectionProperties()
1592 for (Connection c : getConnections()) { in updateExtras()
DImsConferenceController.java318 conferenceParticipantsSet.addAll(conference.getConnections()); in recalculateConferenceable()
DTelephonyConnectionService.java1972 allConnections.addAll(ringingCall.getConnections()); in onCreateUnknownConnection()
1977 allConnections.addAll(foregroundCall.getConnections()); in onCreateUnknownConnection()
1983 allConnections.addAll(imsFgCall.getConnections()); in onCreateUnknownConnection()
1988 allConnections.addAll(phone.getBackgroundCall().getConnections()); in onCreateUnknownConnection()
/packages/apps/Dialer/java/com/android/dialer/simulator/impl/
DSimulatorConference.java135 if (conferenceType == Simulator.CONFERENCE_TYPE_GSM && getConnections().size() == 1) { in onSeparate()
136 removeConnection(getConnections().get(0)); in onSeparate()
165 if (getConnections().size() <= 1) { in onGsmEvent()
DSimulatorConnectionsBankImpl.java136 for (Connection connection : new ArrayList<>(conference.getConnections())) { in onEvent()
DSimulatorConferenceCreator.java204 for (Connection connection : new ArrayList<>(conference.getConnections())) { in onEvent()
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestConnectionService.java99 for (Connection c : getConnections()) { in onDisconnect()
107 if (getConnections().contains(connection)) { in onSeparate()
115 for (Connection c : getConnections()) { in onHold()
123 for (Connection c : getConnections()) { in onUnhold()
DSelfManagedCallList.java197 public List<SelfManagedConnection> getConnections() { in getConnections() method in SelfManagedCallList
DTestConnectionManager.java336 for (RemoteConnection r : remote.getConnections()) { in TestManagedConference()
DSelfManagedCallingActivity.java177 mCallList.getConnections()); in onCreate()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/hfpclient/
DHfpClientDeviceBlock.java281 for (Connection confConn : mConference.getConnections()) { in updateConferenceableConnections()
309 if (mConference != null && mConference.getConnections().size() == 0) { in updateConferenceableConnections()
/packages/services/Telephony/src/com/android/phone/
DCallTime.java133 List connections = call.getConnections(); in getCallDuration()