OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:allconnections
(Results
1 - 2
of
2
) sorted by null
/external/deqp/execserver/
xsTcpServer.cpp
124
std::vector<ConnectionHandler*>
allConnections
;
131
std::copy(m_liveConnections.begin(), m_liveConnections.end(), std::inserter(
allConnections
,
allConnections
.end()));
132
std::copy(m_doneConnections.begin(), m_doneConnections.end(), std::inserter(
allConnections
,
allConnections
.end()));
140
for (std::vector<ConnectionHandler*>::const_iterator i =
allConnections
.begin(); i !=
allConnections
.end(); i++)
/packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java
320
final List<com.android.internal.telephony.Connection>
allConnections
= new ArrayList<>();
323
allConnections
.addAll(ringingCall.getConnections());
327
allConnections
.addAll(foregroundCall.getConnections());
331
allConnections
.addAll(phone.getBackgroundCall().getConnections());
335
for (com.android.internal.telephony.Connection telephonyConnection :
allConnections
) {
Completed in 52 milliseconds