Home
last modified time | relevance | path

Searched refs:PROPERTY_IS_EXTERNAL_CALL (Results 1 – 17 of 17) sorted by relevance

/packages/apps/Dialer/java/com/android/contacts/common/compat/
DCallCompat.java36 public static final int PROPERTY_IS_EXTERNAL_CALL = Call.Details.PROPERTY_IS_EXTERNAL_CALL; field in CallCompat.Details
/packages/services/Telephony/src/com/android/services/telephony/
DImsConferenceController.java169 if ((connection.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) == in add()
170 Connection.PROPERTY_IS_EXTERNAL_CALL) { in add()
199 if ((connection.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) == in remove()
200 Connection.PROPERTY_IS_EXTERNAL_CALL) { in remove()
DImsConference.java527 Connection.PROPERTY_IS_EXTERNAL_CALL, in applyHostProperties()
528 (properties & Connection.PROPERTY_IS_EXTERNAL_CALL) != 0); in applyHostProperties()
DTelephonyConnectionService.java2085 return (connection.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) in isExternalConnection()
2086 == Connection.PROPERTY_IS_EXTERNAL_CALL; in isExternalConnection()
4414 (c.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) in allCallsSupportHold()
4463 (c.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) == 0 in isCallPresentOnOtherSub()
4505 (c.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) in maybeDisconnectCallsOnOtherSubs()
4596 & Connection.PROPERTY_IS_EXTERNAL_CALL) == 0 in maybeGetFirstConferenceableFromOtherSubscription()
4612 (c.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) == 0 in maybeGetFirstConferenceableFromOtherSubscription()
DTelephonyConnection.java1185 if ((getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) != in onPullExternalCall()
1186 Connection.PROPERTY_IS_EXTERNAL_CALL) { in onPullExternalCall()
1503 newProperties = changeBitmask(newProperties, PROPERTY_IS_EXTERNAL_CALL, in updateConnectionProperties()
/packages/apps/Dialer/java/com/android/incallui/call/
DExternalCallList.java53 telecomCall.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)); in onCallAdded()
106 if (!call.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)) { in notifyExternalCallUpdated()
DDialerCall.java1202 return hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL); in isExternalCall()
/packages/apps/Contacts/src/com/android/contacts/compat/
DCallSdkCompat.java28 public static final int PROPERTY_IS_EXTERNAL_CALL = 0x00000040; field in CallSdkCompat.Details
/packages/services/Telecomm/src/com/android/server/telecom/
DParcelableCallUtils.java552 Connection.PROPERTY_IS_EXTERNAL_CALL,
553 android.telecom.Call.Details.PROPERTY_IS_EXTERNAL_CALL,
DCall.java1949 return (getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) == in isExternalCall()
1950 Connection.PROPERTY_IS_EXTERNAL_CALL; in isExternalCall()
2376 boolean wasExternal = (previousProperties & Connection.PROPERTY_IS_EXTERNAL_CALL) in setConnectionProperties()
2377 == Connection.PROPERTY_IS_EXTERNAL_CALL; in setConnectionProperties()
2378 boolean isExternal = (connectionProperties & Connection.PROPERTY_IS_EXTERNAL_CALL) in setConnectionProperties()
2379 == Connection.PROPERTY_IS_EXTERNAL_CALL; in setConnectionProperties()
3494 if (!hasProperty(Connection.PROPERTY_IS_EXTERNAL_CALL)) { in pullExternalCall()
/packages/apps/Dialer/java/com/android/incallui/
DInCallPresenter.java173 if (details.hasProperty(Details.PROPERTY_IS_EXTERNAL_CALL)
627 if (call.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)) { in onCallAdded()
665 if (call.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)) { in shouldAttemptBlocking()
759 if (call.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)) { in onCallRemoved()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/
DBluetoothCall.java306 return getDetails().hasProperty(Call.Details.PROPERTY_IS_EXTERNAL_CALL); in isExternalCall()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallTest.java493 call.setConnectionProperties(Connection.PROPERTY_IS_EXTERNAL_CALL); in testCanPullCallRemovedDuringEmergencyCall()
519 call.setConnectionProperties(Connection.PROPERTY_IS_EXTERNAL_CALL); in testCanNotPullCallDuringEmergencyCall()
DTelecomSystemTest.java1108 Call.Details.PROPERTY_IS_EXTERNAL_CALL) == 0) { in startAndMakeActiveOutgoingCall()
1166 Call.Details.PROPERTY_IS_EXTERNAL_CALL) == 0) { in startAndMakeActiveIncomingCall()
DBasicCallTests.java981 Connection.PROPERTY_IS_EXTERNAL_CALL; in testPullExternalCall()
1006 Connection.PROPERTY_IS_EXTERNAL_CALL; in testPullNonPullableExternalCall()
DCallsManagerTest.java2256 Connection.CAPABILITY_CAN_PULL_CALL, Connection.PROPERTY_IS_EXTERNAL_CALL); in testExternalCallCapabilitiesUpdated()
/packages/services/Telephony/tests/src/com/android/services/telephony/
DTelephonyConnectionServiceTest.java1858 android.telecom.Connection.PROPERTY_IS_EXTERNAL_CALL, false); in testDontDisconnectExternal()