OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SipSession
(Results
1 - 9
of
9
) sorted by null
/frameworks/opt/net/voip/src/java/android/net/sip/
SipSession.java
25
* <p>You can get a {@link
SipSession
} from {@link SipManager} with {@link
29
public final class
SipSession
{
30
private static final String TAG = "
SipSession
";
117
public void onCalling(
SipSession
session) {
127
public void onRinging(
SipSession
session, SipProfile caller,
136
public void onRingingBack(
SipSession
session) {
145
public void onCallEstablished(
SipSession
session,
154
public void onCallEnded(
SipSession
session) {
162
public void onCallBusy(
SipSession
session) {
172
public void onCallTransferring(
SipSession
newSession
[
all
...]
SipAudioCall.java
66
* <p>Many of these events are also received by {@link
SipSession
.Listener}.</p>
176
private
SipSession
mSipSession;
177
private
SipSession
mTransferringSession;
243
case
SipSession
.State.READY_TO_CALL:
246
case
SipSession
.State.INCOMING_CALL:
249
case
SipSession
.State.OUTGOING_CALL:
252
case
SipSession
.State.OUTGOING_CALL_RING_BACK:
329
* Gets the state of the {@link
SipSession
} that carries this call.
330
* The value returned must be one of the states in {@link
SipSession
.State}.
336
if (mSipSession == null) return
SipSession
.State.READY_TO_CALL
[
all
...]
SipManager.java
36
* <li>Create a {@link
SipSession
} to get ready for making calls or listen for incoming calls. See
327
SipSession
s = createSipSession(localProfile, null);
403
call.attachCall(new
SipSession
(session), offerSd);
516
* Gets the {@link
SipSession
} that handles the incoming call. For audio
525
public
SipSession
getSessionFor(Intent incomingCallIntent)
530
return ((s == null) ? null : new
SipSession
(s));
542
* Creates a {@link
SipSession
} with the specified profile. Use other
543
* methods, if applicable, instead of interacting with {@link
SipSession
}
549
public
SipSession
createSipSession(SipProfile localProfile,
550
SipSession
.Listener listener) throws SipException
[
all
...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java
35
import android.net.sip.
SipSession
;
86
private static final String TAG = "
SipSession
";
118
// call-id-to-
SipSession
map
372
+
SipSession
.State.toString(session.mState));
489
SipSession
.State.INCOMING_CALL);
499
SipSession
.State.INCOMING_CALL);
509
+
SipSession
.State.toString(mState) + ": processing "
539
int mState =
SipSession
.State.READY_TO_CALL;
604
mState =
SipSession
.State.READY_TO_CALL;
756
+
SipSession
.State.toString(mState)
[
all
...]
SipService.java
32
import android.net.sip.
SipSession
;
402
if (entry.getValue().getState() !=
SipSession
.State.INCOMING_CALL) {
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java
27
import android.net.sip.
SipSession
;
126
!=
SipSession
.State.INCOMING_CALL) {
399
case
SipSession
.State.READY_TO_CALL: return Call.State.IDLE;
400
case
SipSession
.State.INCOMING_CALL:
401
case
SipSession
.State.INCOMING_CALL_ANSWERING: return Call.State.INCOMING;
402
case
SipSession
.State.OUTGOING_CALL: return Call.State.DIALING;
403
case
SipSession
.State.OUTGOING_CALL_RING_BACK: return Call.State.ALERTING;
404
case
SipSession
.State.OUTGOING_CALL_CANCELING: return Call.State.DISCONNECTING;
405
case
SipSession
.State.IN_CALL: return Call.State.ACTIVE;
[
all
...]
/prebuilts/sdk/12/
android.jar
/prebuilts/sdk/14/
android.jar
/prebuilts/sdk/current/
android.jar
Completed in 45 milliseconds