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

12 3 4 5

  /frameworks/base/telecomm/java/com/android/internal/telecom/
ICallScreeningAdapter.aidl 27 void allowCall(String callId);
30 String callId,
IInCallService.aidl 40 void setPostDial(String callId, String remaining);
42 void setPostDialWait(String callId, String remaining);
52 void onConnectionEvent(String callId, String event, in Bundle extras);
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
ConferenceParticipantListAdapter.java 127 * @param callId The call id.
131 public void onContactInfoComplete(String callId, ContactCacheEntry entry) {
132 update(callId, entry);
138 * @param callId The call id.
142 public void onImageLoadComplete(String callId, ContactCacheEntry entry) {
143 update(callId, entry);
147 public void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) {}
152 * @param callId The call id.
155 private void update(String callId, ContactCacheEntry entry) {
158 listAdapter.updateContactInfo(callId, entry)
    [all...]
ContactInfoCache.java 99 public ContactCacheEntry getInfo(String callId) {
100 return mInfoMap.get(callId);
176 final String callId = call.getId();
177 final ContactCacheEntry cacheEntry = mInfoMap.get(callId);
178 Set<ContactInfoCacheCallback> callBacks = mCallBacks.get(callId);
184 callback.onContactInfoComplete(callId, cacheEntry);
200 mCallBacks.put(callId, callBacks);
216 final String callId = call.getId();
223 ContactCacheEntry cacheEntry = mInfoMap.get(callId);
228 cacheEntry = buildEntry(mContext, callId, callerInfo, presentationMode, isIncoming)
    [all...]
PostCharDialogFragment.java 43 public PostCharDialogFragment(String callId, String postDialStr) {
44 mCallId = callId;
CallCardPresenter.java 104 public void onContactInfoComplete(String callId, ContactCacheEntry entry) {
107 presenter.onContactInfoComplete(callId, entry, mIsPrimary);
112 public void onImageLoadComplete(String callId, ContactCacheEntry entry) {
115 presenter.onImageLoadComplete(callId, entry);
120 public void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) {
123 presenter.onContactInteractionsInfoComplete(callId, entry);
591 private void onContactInfoComplete(String callId, ContactCacheEntry entry, boolean isPrimary) {
593 (isPrimary && mPrimary != null && TextUtils.equals(callId, mPrimary.getId())) ||
594 (!isPrimary && mSecondary != null && TextUtils.equals(callId, mSecondary.getId()));
598 Log.w(this, "Dropping stale contact lookup info for " + callId);
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
InCallServiceFixture.java 86 public void setPostDial(String callId, String remaining) throws RemoteException {
87 mPostDialWaitById.remove(callId);
88 mPostDialById.put(callId, remaining);
92 public void setPostDialWait(String callId, String remaining) throws RemoteException {
93 mPostDialById.remove(callId);
94 mPostDialWaitById.put(callId, remaining);
119 public void onConnectionEvent(String callId, String event, Bundle extras)
ConnectionServiceFixture.java 240 public void abort(String callId) throws RemoteException { }
243 public void answerVideo(String callId, int videoState) throws RemoteException { }
246 public void answer(String callId) throws RemoteException { }
249 public void reject(String callId) throws RemoteException {
250 rejectedCallIds.add(callId);
254 public void rejectWithMessage(String callId, String message) throws RemoteException { }
257 public void disconnect(String callId) throws RemoteException { }
260 public void silence(String callId) throws RemoteException { }
263 public void hold(String callId) throws RemoteException { }
266 public void unhold(String callId) throws RemoteException {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
Replaces.java 37 public String callId;
47 *@param callId string call identifier (should be localid@host)
50 public Replaces(String callId) throws IllegalArgumentException {
52 this.callIdentifier = new CallIdentifier(callId);
60 if (callId == null)
63 String retVal = callId;
72 * get the CallId field. This does the same thing as encodeBody
77 return callId;
89 * set the CallId field
96 callId = cid
    [all...]
ReferencesHeader.java 30 public void setCallId(String callId) throws ParseException;
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
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CallIDParser.java 43 * @param callID message to parse
45 public CallIDParser(String callID) {
46 super(callID);
59 * @return SIPHeader (CallID object)
71 CallID callID = new CallID();
75 callID.setCallId(rest.trim());
76 return callID;
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageFactoryImpl.java 101 * @param callId -
102 * the new CallIdHeader object of the callId value of this
122 String method, CallIdHeader callId, CSeqHeader cSeq,
126 if (requestURI == null || method == null || callId == null
135 sipRequest.setCallId(callId);
158 * @param callId -
159 * the new CallIdHeader object of the callId value of this
179 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to,
182 if (requestURI == null || method == null || callId == null
193 sipRequest.setCallId(callId);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecordFactory.java 26 * @param callId -- the call id
35 String firstLine, String tid, String callId, long timestampVal);
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
ReferencesParser.java 46 String callId = lexer.byteStringNoSemicolon();
48 references.setCallId(callId);
  /packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
CallScreeningServiceFilter.java 80 public void allowCall(String callId) {
85 Log.d(this, "allowCall(%s)", callId);
86 if (mCall != null && mCall.getId().equals(callId)) {
94 Log.w(this, "allowCall, unknown call id: %s", callId);
106 String callId,
115 + "shouldShowNotification: %b", callId, shouldReject,
117 if (mCall != null && mCall.getId().equals(callId)) {
125 Log.w(this, "disallowCall, unknown call id: %s", callId);
  /packages/services/Telecomm/src/com/android/server/telecom/
Analytics.java 180 public String callId;
206 CallInfoImpl(String callId, int callDirection) {
207 this.callId = callId;
217 this.callId = other.callId;
245 Log.d(TAG, "setting startTime for call " + callId + " to " + startTime);
251 Log.d(TAG, "setting endTime for call " + callId + " to " + endTime);
257 Log.d(TAG, "setting isAdditional for call " + callId + " to " + isAdditional);
263 Log.d(TAG, "setting isInterrupted for call " + callId + " to " + isInterrupted)
    [all...]
  /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/ims/src/java/com/android/ims/
ImsServiceBase.java 87 public IImsCallSession getPendingCallSession(int serviceId, String callId) {
88 return onGetPendingCallSession(serviceId, callId);
181 protected IImsCallSession onGetPendingCallSession(int serviceId, String callId) {
  /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);
  /frameworks/base/telephony/java/com/android/internal/telephony/
ICallService.aidl 51 * Disconnects the call identified by callId.
53 void disconnect(String 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...]
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipService.aidl 40 ISipSession getPendingSession(String callId, String opPackageName);

Completed in 282 milliseconds

12 3 4 5