HomeSort by relevance Sort by last modified time
    Searched refs:mCallId (Results 1 - 5 of 5) sorted by null

  /packages/apps/InCallUI/src/com/android/incallui/
AnswerPresenter.java 31 private int mCallId = Call.INVALID_CALL_ID;
57 if (mCallId != Call.INVALID_CALL_ID) {
58 CallList.getInstance().removeCallUpdateListener(mCallId, this);
78 if (call.getCallId() != mCallId) {
86 mCallId = call.getCallId();
90 CallList.getInstance().addCallUpdateListener(mCallId, this);
92 Log.d(TAG, "Showing incoming for call id: " + mCallId + " " + this);
111 CallList.getInstance().removeCallUpdateListener(mCallId, this);
115 // mCallId will hold the state of the call. We don't clear the mCall variable here as
117 mCallId = Call.INVALID_CALL_ID
    [all...]
PostCharDialogFragment.java 33 private int mCallId;
37 mCallId = callId;
55 CallCommandClient.getInstance().postDialWaitContinue(mCallId);
74 CallCommandClient.getInstance().postDialCancel(mCallId);
ContactInfoCache.java 200 private final int mCallId;
203 mCallId = callId;
213 clearCallbacks(mCallId);
229 final ContactCacheEntry oldEntry = mInfoMap.get(mCallId);
245 mInfoMap.put(mCallId, entry);
246 sendInfoNotifications(mCallId, entry);
251 clearCallbacks(mCallId);
258 bitmap, (Integer) mCallId);
  /packages/services/Telephony/common/src/com/android/services/telephony/common/
CallIdentification.java 31 private int mCallId;
46 mCallId = callId;
50 mCallId = identification.mCallId;
58 return mCallId;
99 dest.writeInt(mCallId);
110 mCallId = in.readInt();
141 .add("mCallId", mCallId)
Call.java 171 private int mCallId;
197 mCallId = callId;
198 mIdentification = new CallIdentification(mCallId);
202 mCallId = call.mCallId;
214 return mCallId;
339 dest.writeInt(mCallId);
354 mCallId = in.readInt();
390 .add("mCallId", mCallId)
    [all...]

Completed in 426 milliseconds