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

  /external/webkit/Source/WebCore/html/
TimeRanges.cpp 41 RefPtr<TimeRanges> newSession = TimeRanges::create();
45 newSession->add(m_ranges[i].m_start, m_ranges[i].m_end);
47 return newSession.release();
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipSessionListener.aidl 77 * @param newSession the new session that the call will be transferred to
80 void onCallTransferring(in ISipSession newSession, String sessionDescription);
SipAudioCall.java 537 public void onCallTransferring(SipSession newSession,
540 + mSipSession + " newSession=" + newSession);
541 mTransferringSession = newSession;
544 newSession.makeCall(newSession.getPeerProfile(),
548 newSession.answerCall(answer, SESSION_TIMEOUT);
552 newSession.endCall();
    [all...]
SipSession.java 169 * @param newSession the new session that the call will be transferred to
172 public void onCallTransferring(SipSession newSession,
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java 290 private synchronized void addSipSession(SipSessionImpl newSession) {
291 removeSipSession(newSession);
292 String key = newSession.getCallId();
293 mSessionMap.put(key, newSession);
294 if (isLoggable(newSession)) {
425 SipSessionImpl newSession = new SipSessionImpl(listener);
426 newSession.mServerTransaction = transaction;
427 newSession.mState = newState;
428 newSession.mDialog = newSession.mServerTransaction.getDialog()
    [all...]
SipSessionListenerProxy.java 124 public void onCallTransferring(final ISipSession newSession,
131 mListener.onCallTransferring(newSession, sessionDescription);
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
FwdLockEngine.cpp 385 ConvertSession *newSession = new ConvertSession();
387 FwdLockConv_OpenSession(&(newSession->uniqueId), &(newSession->output))) {
388 convertSessionMap.addValue(convertId, newSession);
392 delete newSession;
  /frameworks/av/media/mtp/
MtpDevice.cpp 284 MtpSessionID newSession = 1;
286 mRequest.setParameter(1, newSession);
291 newSession = mResponse.getParameter(1);
295 mSessionID = newSession;