OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImsCallSession
(Results
1 - 3
of
3
) sorted by null
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
ImsCallSession.java
32
public class
ImsCallSession
{
33
private static final String TAG = "
ImsCallSession
";
97
public void callSessionProgressing(
ImsCallSession
session,
107
public void callSessionStarted(
ImsCallSession
session,
118
public void callSessionStartFailed(
ImsCallSession
session,
128
public void callSessionTerminated(
ImsCallSession
session,
137
public void callSessionHeld(
ImsCallSession
session,
147
public void callSessionHoldFailed(
ImsCallSession
session,
156
public void callSessionHoldReceived(
ImsCallSession
session,
165
public void callSessionResumed(
ImsCallSession
session
[
all
...]
/frameworks/opt/net/ims/src/java/com/android/ims/
ImsCall.java
35
import com.android.ims.internal.
ImsCallSession
;
58
* <p>Many of these events are also received by {@link
ImsCallSession
.Listener}.</p>
400
private
ImsCallSession
mSession = null;
526
* Gets the state of the {@link
ImsCallSession
} that carries this call.
527
* The value returned must be one of the states in {@link
ImsCallSession
#State}.
534
return
ImsCallSession
.State.IDLE;
542
* Gets the {@link
ImsCallSession
} that carries this call.
547
public
ImsCallSession
getCallSession() {
696
case
ImsCallSession
.State.ESTABLISHING:
699
case
ImsCallSession
.State.TERMINATED
[
all
...]
ImsManager.java
38
import com.android.ims.internal.
ImsCallSession
;
411
ImsCallSession
session = createCallSession(serviceId, profile);
469
call.attachSession(new
ImsCallSession
(session));
579
* Creates a {@link
ImsCallSession
} with the specified call profile.
581
* {@link
ImsCallSession
} directly.
586
private
ImsCallSession
createCallSession(int serviceId,
589
return new
ImsCallSession
(mImsService.createCallSession(serviceId, profile, null));
Completed in 2888 milliseconds