HomeSort by relevance Sort by last modified time
    Searched full:callid (Results 26 - 50 of 82) sorted by null

12 3 4

  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyListener.aidl 26 void onUpdate(int callId, int state, String number);
  /packages/apps/InCallUI/src/com/android/incallui/
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...]
PostCharDialogFragment.java 36 public PostCharDialogFragment(int callId, String postDialStr) {
37 mCallId = callId;
  /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...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelper.java 71 * @param callId -- the call Id for which we want to remove the cached headers.
74 public abstract void removeCachedAuthenticationHeaders(String callId);
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/
CallIdentifier.java 32 * The call identifer that goes into a callID header and a in-reply-to header.
36 * @see CallID
155 /** set the callId field
171 throw new IllegalArgumentException("CallID must be token@token or token");
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...]
HeaderFactoryExt.java 70 * @param callId -
78 public ReplacesHeader createReplacesHeader(String callId, String toTag,
226 * @param callId -
234 public JoinHeader createJoinHeader(String callId, String toTag,
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
ReplacesHeader.java 31 void setCallId(String callId) throws ParseException;
JoinHeader.java 185 * Sets the Call-Id of the CallIdHeader. The CallId parameter uniquely
191 * @param callId - the string value of the Call-Id of this CallIdHeader.
195 * unexpectedly while parsing the callId value.
199 public void setCallId(String callId) throws ParseException;
205 * Returns the Call-Id of CallIdHeader. The CallId parameter uniquely
  /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...]
  /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);
test-runner.html 275 evaluateInWebInspector: function(callId, script)
278 this._inspectorWindow.postMessage(["evaluateForTest", callId, script], "*");
280 this._pendingMessages.push(["evaluateForTest", callId, script]);
  /external/nist-sip/java/javax/sip/header/
HeaderFactory.java 35 CallIdHeader createCallIdHeader(String callId) throws ParseException;
87 InReplyToHeader createInReplyToHeader(String callId) throws ParseException;
  /packages/services/Telephony/common/src/com/android/services/telephony/common/
CallIdentification.java 45 public CallIdentification(int callId) {
46 mCallId = callId;
ICallHandlerService.aidl 72 void onPostDialWait(int callId, String remainingChars);
  /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/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/chromium_org/third_party/WebKit/Source/web/
InspectorFrontendClientImpl.cpp 83 " var callId = 0;"
87 " var message = {\"method\": methodName, \"id\": ++callId};"

Completed in 2139 milliseconds

12 3 4