Searched defs:callId (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipManager.java385 String callId = getCallId(incomingCallIntent);
386 if (callId == null) {
397 ISipSession session = mSipService.getPendingSession(callId);
419 String callId = getCallId(intent);
421 return ((callId != null) && (offerSd != null));
449 * @param callId the call ID of the incoming call
454 public static Intent createIncomingCallBroadcast(String callId, argument
457 intent.putExtra(EXTRA_CALL_ID, callId);
528 String callId = getCallId(incomingCallIntent);
529 ISipSession s = mSipService.getPendingSession(callId);
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java271 public synchronized ISipSession getPendingSession(String callId) { argument
274 if (callId == null) return null;
275 return mPendingSessions.get(callId);
410 String callId = ringingSession.getCallId();
412 if ((group != ringingGroup) && group.containsSession(callId)) {
476 public boolean containsSession(String callId) { argument
477 return mSipGroup.containsSession(callId);
H A DSipSessionGroup.java273 synchronized boolean containsSession(String callId) { argument
274 return mSessionMap.containsKey(callId);
447 String callId = replaces.getCallId();
448 SipSessionImpl session = mSessionMap.get(callId);

Completed in 113 milliseconds