Home
last modified time | relevance | path

Searched refs:mCallList (Results 1 – 6 of 6) sorted by relevance

/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestInCallUI.java67 private TestCallList mCallList; field in TestInCallUI
84 mCallList = TestCallList.getInstance(); in onCreate()
85 mCallList.addListener(new TestCallList.Listener() { in onCreate()
88 if (mCallList.size() == 0) { in onCreate()
136 Call call = mCallList.getCall(0); in onCreate()
145 Call call = mCallList.getCall(0); in onCreate()
158 Call call = mCallList.getCall(0); in onCreate()
166 Call call = mCallList.getCall(0); in onCreate()
175 Call call = mCallList.getCall(0); in onCreate()
182 Call call = mCallList.getCall(0); in onCreate()
[all …]
DCallListAdapter.java44 if (mCallList.size() == 0) {
45 mCallList.removeListener(this);
51 private final TestCallList mCallList; field in CallListAdapter
57 if (mCallList.size() > 0) {
66 mCallList = TestCallList.getInstance(); in CallListAdapter()
67 mCallList.addListener(mListener); in CallListAdapter()
74 Log.i(TAG, "size reporting: " + mCallList.size()); in getCount()
75 return mCallList.size(); in getCount()
104 Call call = mCallList.getCall(position); in getView()
DSelfManagedConnectionService.java39 private final SelfManagedCallList mCallList = SelfManagedCallList.getInstance(); field in SelfManagedConnectionService
70 mCallList.notifyCreateIncomingConnectionFailed(request); in onCreateIncomingConnectionFailed()
76 mCallList.notifyCreateOutgoingConnectionFailed(request); in onCreateOutgoingConnectionFailed()
81 mCallList.notifyConnectionServiceFocusLost(); in onConnectionServiceFocusLost()
87 mCallList.notifyConnectionServiceFocusGained(); in onConnectionServiceFocusGained()
92 SelfManagedConnection connection = new SelfManagedConnection(mCallList, in createSelfManagedConnection()
94 connection.setListener(mCallList.getConnectionListener()); in createSelfManagedConnection()
141 mCallList.addConnection(connection); in createSelfManagedConnection()
DTestRttActivity.java54 private TestCallList mCallList; field in TestRttActivity
89 while (mCallList.size() > 0) {
90 Call.RttCall rttCall = mCallList.getCall(0).getRttCall();
142 mCallList = TestCallList.getInstance(); in onCreate()
143 mCallList.addListener(new TestCallList.Listener() { in onCreate()
146 if (mCallList.size() == 0) { in onCreate()
159 Call call = mCallList.getCall(0); in onCreate()
167 Call.RttCall call = mCallList.getCall(0).getRttCall(); in onCreate()
208 mCallList.getCall(0).getRttCall().write(toAppend); in onCreate()
DSelfManagedCallingActivity.java54 private SelfManagedCallList mCallList = SelfManagedCallList.getInstance(); field in SelfManagedCallingActivity
145 mCallList.setListener(mCallListListener); in onCreate()
146 mCallList.registerPhoneAccounts(this); in onCreate()
148 mCallList.getConnections()); in onCreate()
150 Log.i(TAG, "onCreate - mCallList id " + Objects.hashCode(mCallList)); in onCreate()
155 return mCallList.getPhoneAccountHandle(SelfManagedCallList.SELF_MANAGED_ACCOUNT_1); in getSelectedPhoneAccountHandle()
157 return mCallList.getPhoneAccountHandle(SelfManagedCallList.SELF_MANAGED_ACCOUNT_2); in getSelectedPhoneAccountHandle()
DSelfManagedConnection.java58 private final SelfManagedCallList mCallList; field in SelfManagedConnection
67 mCallList = callList; in SelfManagedConnection()
84 mCallList.notifyCallModified(); in onCallAudioStateChanged()