OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getCallId
(Results
1 - 25
of
33
) sorted by null
1
2
/external/nist-sip/java/javax/sip/header/
CallIdHeader.java
8
String
getCallId
();
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
JoinHeader.java
215
public String
getCallId
();
ReplacesHeader.java
30
String
getCallId
();
ReferencesHeader.java
32
public String
getCallId
();
References.java
24
public String
getCallId
() {
Join.java
76
public String
getCallId
() {
Replaces.java
76
public String
getCallId
() {
/external/nist-sip/java/gov/nist/javax/sip/header/
CallID.java
71
return this.
getCallId
().equalsIgnoreCase( o.
getCallId
() );
97
public String
getCallId
() {
InReplyTo.java
89
public String
getCallId
() {
/frameworks/base/voip/java/android/net/sip/
ISipSession.aidl
70
String
getCallId
();
SipManager.java
188
* description string extra. Use {@link #
getCallId
} and
199
* @see #
getCallId
206
* @see #
getCallId
379
String callId =
getCallId
(incomingCallIntent);
413
String callId =
getCallId
(intent);
424
public static String
getCallId
(Intent incomingCallIntent) {
522
String callId =
getCallId
(incomingCallIntent);
SipSession.java
332
public String
getCallId
() {
334
return mSession.
getCallId
();
336
Log.e(TAG, "
getCallId
(): " + e);
/frameworks/base/voip/java/com/android/server/sip/
SipHelper.java
496
public static String
getCallId
(EventObject event) {
499
return
getCallId
(((RequestEvent) event).getRequest());
501
return
getCallId
(((ResponseEvent) event).getResponse());
504
return
getCallId
(((DialogTerminatedEvent) event).getDialog());
507
return
getCallId
(e.isServerTransaction()
513
return
getCallId
(((Transaction) source));
515
return
getCallId
((Dialog) source);
521
public static String
getCallId
(Transaction transaction) {
522
return ((transaction != null) ?
getCallId
(transaction.getRequest())
526
private static String
getCallId
(Message message)
[
all
...]
SipService.java
393
mPendingSessions.put(session.
getCallId
(), session);
414
String callId = ringingSession.
getCallId
();
597
session.
getCallId
(), sessionDescription);
599
+ caller.getUri() + ": " + session.
getCallId
()
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
JoinParser.java
72
System.out.println("callId " + t.
getCallId
() + " from-tag=" + t.getFromTag()
ReplacesParser.java
74
System.out.println("callId " + t.
getCallId
() + " from-tag=" + t.getFromTag()
/external/nist-sip/java/gov/nist/javax/sip/stack/
ServerLog.java
345
CallID cid = (CallID) message.
getCallId
();
348
callId = cid.
getCallId
();
370
CallID cid = (CallID) message.
getCallId
();
373
callId = cid.
getCallId
();
SIPServerTransaction.java
644
&& getOriginalRequest().
getCallId
().
getCallId
().equalsIgnoreCase(
645
messageToTest.
getCallId
().
getCallId
())
[
all
...]
SIPTransaction.java
396
this.callId = (CallID) newOriginalRequest.
getCallId
();
995
&& getOriginalRequest().
getCallId
().
getCallId
().equals(
996
requestToTest.
getCallId
().
getCallId
())
[
all
...]
SIPDialog.java
572
this.callIdHeader = sipRequest.
getCallId
();
623
this.callIdHeader = sipResponse.
getCallId
();
[
all
...]
SIPTransactionStack.java
828
&& notifyMessage.
getCallId
().
getCallId
().equalsIgnoreCase(
829
ct.callId.
getCallId
())) {
[
all
...]
/external/nist-sip/java/javax/sip/
Dialog.java
15
CallIdHeader
getCallId
();
/external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java
420
if (
getCallId
() == null) {
559
CallID cid = (CallID) this.
getCallId
();
562
StringBuffer retval = new StringBuffer(cid.
getCallId
());
590
CallID cid = (CallID) this.
getCallId
();
592
StringBuffer retval = new StringBuffer(cid.
getCallId
());
SIPRequest.java
227
if (this.callIdHeader == null || this.callIdHeader.
getCallId
() == null
228
|| callIdHeader.
getCallId
().equals("")) {
551
CallID cid = (CallID) this.
getCallId
();
552
StringBuffer retval = new StringBuffer(cid.
getCallId
());
587
CallID cid = (CallID) this.
getCallId
();
588
StringBuffer retval = new StringBuffer(cid.
getCallId
());
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java
438
String callId = sipRequest.
getCallId
().
getCallId
();
Completed in 3712 milliseconds
1
2