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.java379 String callId = getCallId(incomingCallIntent);
380 if (callId == null) {
391 ISipSession session = mSipService.getPendingSession(callId);
413 String callId = getCallId(intent);
415 return ((callId != null) && (offerSd != null));
443 * @param callId the call ID of the incoming call
448 public static Intent createIncomingCallBroadcast(String callId, argument
451 intent.putExtra(EXTRA_CALL_ID, callId);
514 String callId = getCallId(incomingCallIntent);
515 ISipSession s = mSipService.getPendingSession(callId);
[all...]
/frameworks/base/voip/java/com/android/server/sip/
H A DSipService.java309 public synchronized ISipSession getPendingSession(String callId) { argument
312 if (callId == null) return null;
313 return mPendingSessions.get(callId);
481 String callId = ringingSession.getCallId();
483 if ((group != ringingGroup) && group.containsSession(callId)) {
516 public boolean containsSession(String callId) { argument
517 return mSipGroup.containsSession(callId);
H A DSipSessionGroup.java235 synchronized boolean containsSession(String callId) { argument
236 return mSessionMap.containsKey(callId);

Completed in 53 milliseconds