HomeSort by relevance Sort by last modified time
    Searched refs:callId (Results 26 - 50 of 67) sorted by null

12 3

  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
ReferencesParser.java 46 String callId = lexer.byteStringNoSemicolon();
48 references.setCallId(callId);
ReplacesParser.java 12 // Replaces = "Replaces" HCOLON callid *(SEMI replaces-param)
25 * @param callID message to parse
27 public ReplacesParser(String callID) {
28 super(callID);
41 * @return SIPHeader (CallID object)
52 String callId = lexer.byteStringNoSemicolon();
55 replaces.setCallId(callId);
74 System.out.println("callId " + t.getCallId() + " from-tag=" + t.getFromTag()
  /external/nist-sip/java/gov/nist/javax/sip/stack/
ServerLog.java 35 import gov.nist.javax.sip.header.CallID;
323 String callId, String firstLine, String status, String tid, long time,
327 sender, firstLine, tid, callId, timestampVal);
345 CallID cid = (CallID) message.getCallId();
346 String callId = null;
348 callId = cid.getCallId();
354 logMessage(inputText, from, to, sender, callId, firstLine, null, tid, time, tsval);
370 CallID cid = (CallID) message.getCallId()
    [all...]
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipService.aidl 40 ISipSession getPendingSession(String callId);
SipManager.java 385 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,
457 intent.putExtra(EXTRA_CALL_ID, callId);
528 String callId = getCallId(incomingCallIntent);
529 ISipSession s = mSipService.getPendingSession(callId);
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
PostCharDialogFragment.java 36 public PostCharDialogFragment(int callId, String postDialStr) {
37 mCallId = callId;
CallList.java 143 * @param callId The call id to get updates for.
146 public void addCallUpdateListener(int callId, CallUpdateListener listener) {
147 List<CallUpdateListener> listeners = mCallUpdateListenerMap.get(callId);
150 mCallUpdateListenerMap.put(callId, listeners);
158 * @param callId The call id to remove the listener for.
161 public void removeCallUpdateListener(int callId, CallUpdateListener listener) {
162 List<CallUpdateListener> listeners = mCallUpdateListenerMap.get(callId);
257 public Call getCall(int callId) {
258 return mCallMap.get(callId);
270 public ArrayList<String> getTextResponses(int callId) {
    [all...]
CallCardPresenter.java 259 public void onContactInfoComplete(int callId, ContactCacheEntry entry) {
270 public void onImageLoadComplete(int callId, ContactCacheEntry entry) {
275 if (mPrimary != null && callId == mPrimary.getCallId()) {
277 } else if (mSecondary != null && callId == mSecondary.getCallId()) {
StatusBarNotifier.java 268 public void onContactInfoComplete(int callId, ContactCacheEntry entry) {
269 Call call = CallList.getInstance().getCall(callId);
280 public void onImageLoadComplete(int callId, ContactCacheEntry entry) {
281 Call call = CallList.getInstance().getCall(callId);
CallHandlerService.java 183 public void onPostDialWait(int callId, String chars) {
184 mMainHandler.sendMessage(mMainHandler.obtainMessage(ON_POST_CHAR_WAIT, callId, 0,
  /packages/services/Telephony/common/src/com/android/services/telephony/common/
ICallHandlerService.aidl 72 void onPostDialWait(int callId, String remainingChars);
CallIdentification.java 45 public CallIdentification(int callId) {
46 mCallId = callId;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorAgent.cpp 143 void InspectorAgent::evaluateForTestInFrontend(long callId, const String& script)
146 m_frontend->inspector()->evaluateForTestInFrontend(static_cast<int>(callId), script);
148 m_pendingEvaluateTestCommands.append(pair<long, String>(callId, script));
InspectorController.h 106 void evaluateForTestInFrontend(long callId, const String& script);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HeapSnapshotWorkerDispatcher.js 63 var response = {callId: data.callId};
InspectorFrontendHostStub.js 36 var callId = ++lastCallId;
41 InspectorFrontendHost._callbacks[callId] = callback;
44 var message = { "id": callId, "method": methodName };
InspectorFrontendAPI.js 237 evaluateForTest: function(callId, script)
239 WebInspector.evaluateForTestInFrontend(callId, script);
  /external/chromium_org/third_party/WebKit/public/web/
WebDevToolsAgent.h 95 virtual void evaluateInWebInspector(long callId, const WebString& script) = 0;
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java 438 String callId = sipRequest.getCallId().getCallId();
442 .getCachedAuthorizationHeaders(callId);
446 "Could not find authentication headers for " + callId);
461 public void removeCachedAuthenticationHeaders(String callId) {
462 if (callId == null)
463 throw new NullPointerException("Null callId argument ");
464 this.cachedCredentials.removeAuthenticationHeader(callId);
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryExt.java 70 * @param callId -
78 public ReplacesHeader createReplacesHeader(String callId, String toTag,
226 * @param callId -
234 public JoinHeader createJoinHeader(String callId, String toTag,
HeaderFactoryImpl.java 260 * Creates a new CallIdHeader based on the newly supplied callId value.
262 * @param callId - the new string value of the call-id.
264 * unexpectedly while parsing the callId value.
267 public CallIdHeader createCallIdHeader(String callId)
269 if (callId == null)
270 throw new NullPointerException("null arg callId");
271 CallID c = new CallID();
272 c.setCallId(callId);
523 * Creates a new InReplyToHeader based on the newly supplied callId
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsAgentImpl.h 93 virtual void evaluateInWebInspector(long callId, const WebString& script);
  /external/smack/src/org/jivesoftware/smack/sasl/
SASLFacebookConnect.java 117 Long callId = new GregorianCalendar().getTimeInMillis()/1000;
120 +"call_id="+callId
134 +"call_id="+callId+"&"
  /packages/services/Telephony/src/com/android/phone/
CallModeler.java 148 public CallResult getCallWithId(int callId) {
151 if (entry.getValue().getCallId() == callId) {
157 if (entry.getValue().getCallId() == callId) {
    [all...]
  /external/nist-sip/java/javax/sip/header/
HeaderFactory.java 35 CallIdHeader createCallIdHeader(String callId) throws ParseException;
87 InReplyToHeader createInReplyToHeader(String callId) throws ParseException;

Completed in 397 milliseconds

12 3