OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DriverCall
(Results
1 - 9
of
9
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DriverCall.java
26
public class
DriverCall
implements Comparable<
DriverCall
> {
27
static final String LOG_TAG = "
DriverCall
";
55
static
DriverCall
57
DriverCall
ret = new
DriverCall
();
101
DriverCall
() {
151
compareTo(
DriverCall
dc) {
RIL.java
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCall.java
24
import com.android.internal.telephony.
DriverCall
;
38
stateFromDCState (
DriverCall
.State dcState) {
98
attach(Connection conn,
DriverCall
dc) {
150
update (CdmaConnection conn,
DriverCall
dc) {
CdmaCallTracker.java
33
import com.android.internal.telephony.
DriverCall
;
503
DriverCall
dc = null;
507
dc = (
DriverCall
) polledCalls.get(curDC);
624
if ((dc.state ==
DriverCall
.State.DIALING
626
|| (dc.state ==
DriverCall
.State.ALERTING
628
|| (dc.state ==
DriverCall
.State.INCOMING
630
|| (dc.state ==
DriverCall
.State.WAITING
[
all
...]
CdmaConnection.java
123
CdmaConnection (Context context,
DriverCall
dc, CdmaCallTracker ct, int index) {
210
compareTo(
DriverCall
c) {
478
update (
DriverCall
dc) {
751
parentFromDCState (
DriverCall
.State state) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCall.java
22
import com.android.internal.telephony.
DriverCall
;
39
stateFromDCState (
DriverCall
.State dcState) {
101
attach(Connection conn,
DriverCall
dc) {
152
update (GsmConnection conn,
DriverCall
dc) {
GsmCallTracker.java
36
import com.android.internal.telephony.
DriverCall
;
457
DriverCall
dc = null;
461
dc = (
DriverCall
) polledCalls.get(curDC);
517
if (dc.state !=
DriverCall
.State.ALERTING
518
&& dc.state !=
DriverCall
.State.DIALING) {
520
if (dc.state ==
DriverCall
.State.HOLDING) {
557
if ((dc.state ==
DriverCall
.State.DIALING
559
|| (dc.state ==
DriverCall
.State.ALERTING
561
|| (dc.state ==
DriverCall
.State.INCOMING
563
|| (dc.state ==
DriverCall
.State.WAITIN
[
all
...]
GsmConnection.java
122
GsmConnection (Context context,
DriverCall
dc, GsmCallTracker ct, int index) {
179
compareTo(
DriverCall
c) {
436
update (
DriverCall
dc) {
684
parentFromDCState (
DriverCall
.State state) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java
24
import com.android.internal.telephony.
DriverCall
;
83
DriverCall
85
DriverCall
ret;
87
ret = new
DriverCall
();
93
ret.state =
DriverCall
.stateFromCLCC(mState.value());
730
public List<
DriverCall
>
732
ArrayList<
DriverCall
> ret = new ArrayList<
DriverCall
>(mCalls.length);
738
DriverCall
dc;
Completed in 51 milliseconds