Home | History | Annotate | Download | only in imsphone

Lines Matching refs:mConnections

81             for(int i = 0, s = mConnections.size(); i < s; i++) {
82 ImsPhoneConnection c = (ImsPhoneConnection) mConnections.get(i);
93 return mConnections;
130 if (mConnections.size() > 1) {
133 for (Connection conn : mConnections) {
158 mConnections.add(conn);
185 for (int i = 0, s = mConnections.size() ; i < s; i ++) {
186 if (mConnections.get(i).getState() != State.DISCONNECTED) {
209 mConnections.remove(conn);
221 return mConnections.size() == ImsPhoneCallTracker.MAX_CONNECTIONS_PER_CALL;
230 for (int i = 0, s = mConnections.size(); i < s; i++) {
231 ImsPhoneConnection cn = (ImsPhoneConnection)mConnections.get(i);
242 if (mConnections.size() == 0) return null;
244 return (ImsPhoneConnection) mConnections.get(0);
364 mConnections = that.mConnections;
366 for (Connection c : mConnections) {