Home | History | Annotate | Download | only in telecom

Lines Matching refs:parcelableCall

124     final void internalAddCall(ParcelableCall parcelableCall) {
125 Call call = new Call(this, parcelableCall.getId(), mInCallAdapter);
126 mCallByTelecomCallId.put(parcelableCall.getId(), call);
128 checkCallTree(parcelableCall);
129 call.internalUpdate(parcelableCall, mCallByTelecomCallId);
144 final void internalUpdateCall(ParcelableCall parcelableCall) {
145 Call call = mCallByTelecomCallId.get(parcelableCall.getId());
147 checkCallTree(parcelableCall);
148 call.internalUpdate(parcelableCall, mCallByTelecomCallId);
332 private void checkCallTree(ParcelableCall parcelableCall) {
333 if (parcelableCall.getParentCallId() != null &&
334 !mCallByTelecomCallId.containsKey(parcelableCall.getParentCallId())) {
335 Log.wtf(this, "ParcelableCall %s has nonexistent parent %s",
336 parcelableCall.getId(), parcelableCall.getParentCallId());
338 if (parcelableCall.getChildCallIds() != null) {
339 for (int i = 0; i < parcelableCall.getChildCallIds().size(); i++) {
340 if (!mCallByTelecomCallId.containsKey(parcelableCall.getChildCallIds().get(i))) {
341 Log.wtf(this, "ParcelableCall %s has nonexistent child %s",
342 parcelableCall.getId(), parcelableCall.getChildCallIds().get(i));