Searched refs:callId (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/voip/java/android/net/sip/
H A DISipService.aidl40 ISipSession getPendingSession(String callId);
H A DSipManager.java386 String callId = getCallId(incomingCallIntent);
387 if (callId == null) {
398 ISipSession session = mSipService.getPendingSession(callId);
420 String callId = getCallId(intent);
422 return ((callId != null) && (offerSd != null));
450 * @param callId the call ID of the incoming call
455 public static Intent createIncomingCallBroadcast(String callId, argument
458 intent.putExtra(EXTRA_CALL_ID, callId);
529 String callId = getCallId(incomingCallIntent);
530 ISipSession s = mSipService.getPendingSession(callId);
[all...]
/frameworks/base/voip/java/com/android/server/sip/
H A DSipService.java266 public synchronized ISipSession getPendingSession(String callId) { argument
269 if (callId == null) return null;
270 return mPendingSessions.get(callId);
405 String callId = ringingSession.getCallId();
407 if ((group != ringingGroup) && group.containsSession(callId)) {
466 public boolean containsSession(String callId) { argument
467 return mSipGroup.containsSession(callId);
H A DSipSessionGroup.java280 synchronized boolean containsSession(String callId) { argument
281 return mSessionMap.containsKey(callId);
445 String callId = replaces.getCallId();
446 SipSessionImpl session = mSessionMap.get(callId);

Completed in 1561 milliseconds