Home
last modified time | relevance | path

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

/packages/services/Telephony/src/com/android/services/telephony/
DImsConferenceController.java160 if ((connection.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) == in add()
161 Connection.PROPERTY_IS_EXTERNAL_CALL) { in add()
190 if ((connection.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) == in remove()
191 Connection.PROPERTY_IS_EXTERNAL_CALL) { in remove()
DImsConference.java521 Connection.PROPERTY_IS_EXTERNAL_CALL, in applyHostProperties()
522 (properties & Connection.PROPERTY_IS_EXTERNAL_CALL) != 0); in applyHostProperties()
DTelephonyConnectionService.java1524 return (connection.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) in isExternalConnection()
1525 == Connection.PROPERTY_IS_EXTERNAL_CALL; in isExternalConnection()
2599 (c.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) == 0 in isCallPresentOnOtherSub()
2629 (c.getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) == 0 in maybeDisconnectCallsOnOtherSubs()
DTelephonyConnection.java1162 if ((getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) != in onPullExternalCall()
1163 Connection.PROPERTY_IS_EXTERNAL_CALL) { in onPullExternalCall()
1468 newProperties = changeBitmask(newProperties, PROPERTY_IS_EXTERNAL_CALL, in updateConnectionProperties()
/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/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/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallTest.java266 call.setConnectionProperties(Connection.PROPERTY_IS_EXTERNAL_CALL); in testCanPullCallRemovedDuringEmergencyCall()
307 call.setConnectionProperties(Connection.PROPERTY_IS_EXTERNAL_CALL); in testCanNotPullCallDuringEmergencyCall()
DTelecomSystemTest.java1024 Call.Details.PROPERTY_IS_EXTERNAL_CALL) == 0) { in startAndMakeActiveOutgoingCall()
1082 Call.Details.PROPERTY_IS_EXTERNAL_CALL) == 0) { in startAndMakeActiveIncomingCall()
DBasicCallTests.java914 Connection.PROPERTY_IS_EXTERNAL_CALL; in testPullExternalCall()
939 Connection.PROPERTY_IS_EXTERNAL_CALL; in testPullNonPullableExternalCall()
DCallsManagerTest.java1320 Connection.CAPABILITY_CAN_PULL_CALL, Connection.PROPERTY_IS_EXTERNAL_CALL); in testExternalCallCapabilitiesUpdated()
/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/
DCall.java1640 return (getConnectionProperties() & Connection.PROPERTY_IS_EXTERNAL_CALL) == in isExternalCall()
1641 Connection.PROPERTY_IS_EXTERNAL_CALL; in isExternalCall()
2011 boolean wasExternal = (previousProperties & Connection.PROPERTY_IS_EXTERNAL_CALL) in setConnectionProperties()
2012 == Connection.PROPERTY_IS_EXTERNAL_CALL; in setConnectionProperties()
2013 boolean isExternal = (connectionProperties & Connection.PROPERTY_IS_EXTERNAL_CALL) in setConnectionProperties()
2014 == Connection.PROPERTY_IS_EXTERNAL_CALL; in setConnectionProperties()
2969 if (!hasProperty(Connection.PROPERTY_IS_EXTERNAL_CALL)) { in pullExternalCall()
DParcelableCallUtils.java540 Connection.PROPERTY_IS_EXTERNAL_CALL,
541 android.telecom.Call.Details.PROPERTY_IS_EXTERNAL_CALL,
/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/apps/Bluetooth/src/com/android/bluetooth/telephony/
DBluetoothCall.java297 return getDetails().hasProperty(Call.Details.PROPERTY_IS_EXTERNAL_CALL); in isExternalCall()
/packages/services/Telephony/tests/src/com/android/services/telephony/
DTelephonyConnectionServiceTest.java1280 android.telecom.Connection.PROPERTY_IS_EXTERNAL_CALL, false); in testDontDisconnectExternal()