OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getForegroundCall
(Results
1 - 12
of
12
) sorted by null
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java
144
assertEquals(0, mGSMPhone.
getForegroundCall
().getConnections().size());
148
assertEquals(Call.State.IDLE, mGSMPhone.
getForegroundCall
().getState());
151
assertEquals(0, mGSMPhone.
getForegroundCall
().getEarliestCreateTime());
152
assertEquals(0, mGSMPhone.
getForegroundCall
().getEarliestConnectTime());
167
assertEquals(Call.State.DIALING, mGSMPhone.
getForegroundCall
().getState());
168
assertTrue(mGSMPhone.
getForegroundCall
().isDialingOrAlerting());
172
} while (mGSMPhone.
getForegroundCall
().getConnections().size() == 0);*/
175
assertEquals(1, mGSMPhone.
getForegroundCall
().getConnections().size());
180
mGSMPhone.
getForegroundCall
().getState());
183
assertTrue(mGSMPhone.
getForegroundCall
().getEarliestCreateTime() > 0)
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java
64
public abstract Call
getForegroundCall
();
232
Rlog.v(LOG_TAG, "canDial(): foregndCall: " +
getForegroundCall
().getState());
235
&& (!
getForegroundCall
().getState().isAlive()
245
Call.State foregroundCallState =
getForegroundCall
().getState();
518
} else if (
getForegroundCall
().isIdle()
SipPhone.java
359
public Call
getForegroundCall
() {
[
all
...]
/packages/services/Telephony/src/com/android/phone/
PhoneUtils.java
491
Call fgCall = phone.
getForegroundCall
();
[
all
...]
CallNotifier.java
689
if ((fgPhone.
getForegroundCall
().getState() == Call.State.ACTIVE)
699
mPreviousCdmaCallState = fgPhone.
getForegroundCall
().getState();
[
all
...]
PhoneInterfaceManager.java
364
final boolean hasActiveCall = !mPhone.
getForegroundCall
().isIdle();
PhoneGlobals.java
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallManager.java
195
return phone.
getForegroundCall
().getPhone();
213
* phone.
getForegroundCall
().getPhone() != phone
215
* isSamePhone(phone, phone.
getForegroundCall
().getPhone()) == true
308
mForegroundCalls.add(basePhone.
getForegroundCall
());
332
mForegroundCalls.remove(basePhone.
getForegroundCall
());
[
all
...]
Phone.java
719
Call
getForegroundCall
();
[
all
...]
PhoneProxy.java
618
public Call
getForegroundCall
() {
619
return mActivePhone.
getForegroundCall
();
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java
498
getForegroundCall
() {
546
GsmCall call =
getForegroundCall
();
587
GsmCall call =
getForegroundCall
();
707
GsmCall.State foregroundCallState =
getForegroundCall
().getState();
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMAPhone.java
414
CdmaCall.State foregroundCallState =
getForegroundCall
().getState();
561
public CdmaCall
getForegroundCall
() {
[
all
...]
Completed in 403 milliseconds