OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:foregroundcall
(Results
1 - 11
of
11
) sorted by null
/packages/services/Telecomm/src/com/android/server/telecom/
Ringer.java
97
public void startRinging(Call
foregroundCall
) {
102
if (
foregroundCall
== null) {
108
Log.event(
foregroundCall
, Log.Events.SKIP_RINGING);
114
if (!shouldRingForContact(
foregroundCall
.getContactUri())) {
121
mRingingCall =
foregroundCall
;
122
Log.event(
foregroundCall
, Log.Events.START_RINGER);
127
mRingtonePlayer.play(mRingtoneFactory,
foregroundCall
);
CallsManager.java
[
all
...]
CallAudioManager.java
664
Call
foregroundCall
= getForegroundCall();
666
if (
foregroundCall
== null) {
677
if (!
foregroundCall
.isActive()) {
681
return
foregroundCall
.isRemotelyHeld();
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
BluetoothPhoneServiceTest.java
308
final Call
foregroundCall
= mock(Call.class);
311
calls.add(
foregroundCall
);
314
when(
foregroundCall
.getState()).thenReturn(CallState.ACTIVE);
316
when(
foregroundCall
.isIncoming()).thenReturn(false);
318
when(
foregroundCall
.getGatewayInfo()).thenReturn(new GatewayInfo(null, null,
325
when(parentCall.getConferenceLevelActiveCall()).thenReturn(
foregroundCall
);
328
add(
foregroundCall
);
332
when(
foregroundCall
.getParentCall()).thenReturn(parentCall);
684
final Call
foregroundCall
= mock(Call.class);
691
add(
foregroundCall
);
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DefaultPhoneNotifier.java
253
Call
foregroundCall
= sender.getForegroundCall();
255
if (ringingCall != null &&
foregroundCall
!= null && backgroundCall != null) {
259
convertPreciseCallState(
foregroundCall
.getState()),
GsmCdmaCallTracker.java
287
// a)
foregroundCall
is empty for the newly dialed connection
456
// Attach the new connection to
foregroundCall
610
"&& (!
foregroundCall
.getState().isAlive()::=%s\n" +
611
" ||
foregroundCall
.getState() == GsmCdmaCall.State.ACTIVE::=%s\n" +
[
all
...]
GsmCdmaConnection.java
660
* Called when this Connection is in the
foregroundCall
[
all
...]
/frameworks/base/telephony/java/android/telephony/
PreciseCallState.java
74
public PreciseCallState(int ringingCall, int
foregroundCall
, int backgroundCall,
77
mForegroundCallState =
foregroundCall
;
/packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java
449
final Call
foregroundCall
= phone.getForegroundCall();
450
if ((
foregroundCall
.getState() != Call.State.DISCONNECTED)
451
&& (
foregroundCall
.hasConnections())) {
452
allConnections.addAll(
foregroundCall
.getConnections());
[
all
...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java.broken
768
//
ForegroundCall
list as an IDLE call
[
all
...]
/packages/services/Telephony/src/com/android/phone/
PhoneUtils.java
[
all
...]
Completed in 1155 milliseconds