Home
last modified time | relevance | path

Searched refs:CAPABILITY_CAN_PULL_CALL (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Dialer/java/com/android/contacts/common/compat/
DCallCompat.java29 && ((call.getDetails().getCallCapabilities() & Details.CAPABILITY_CAN_PULL_CALL) in canPullExternalCall()
30 == Details.CAPABILITY_CAN_PULL_CALL); in canPullExternalCall()
38 public static final int CAPABILITY_CAN_PULL_CALL = Call.Details.CAPABILITY_CAN_PULL_CALL; field in CallCompat.Details
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallTest.java267 call.setConnectionCapabilities(Connection.CAPABILITY_CAN_PULL_CALL); in testCanPullCallRemovedDuringEmergencyCall()
271 assertTrue((call.getConnectionCapabilities() | Connection.CAPABILITY_CAN_PULL_CALL) > 0); in testCanPullCallRemovedDuringEmergencyCall()
277 assertEquals(0, call.getConnectionCapabilities() & Connection.CAPABILITY_CAN_PULL_CALL); in testCanPullCallRemovedDuringEmergencyCall()
283 assertEquals(Connection.CAPABILITY_CAN_PULL_CALL, in testCanPullCallRemovedDuringEmergencyCall()
284 call.getConnectionCapabilities() & Connection.CAPABILITY_CAN_PULL_CALL); in testCanPullCallRemovedDuringEmergencyCall()
308 call.setConnectionCapabilities(Connection.CAPABILITY_CAN_PULL_CALL); in testCanNotPullCallDuringEmergencyCall()
DCallsManagerTest.java1320 Connection.CAPABILITY_CAN_PULL_CALL, Connection.PROPERTY_IS_EXTERNAL_CALL); in testExternalCallCapabilitiesUpdated()
1338 assertEquals(0, Connection.CAPABILITY_CAN_PULL_CALL & result); in testExternalCallCapabilitiesUpdated()
1343 assertEquals(Connection.CAPABILITY_CAN_PULL_CALL, in testExternalCallCapabilitiesUpdated()
1344 Connection.CAPABILITY_CAN_PULL_CALL & result); in testExternalCallCapabilitiesUpdated()
DBasicCallTests.java912 Connection.CAPABILITY_CAN_PULL_CALL; in testPullExternalCall()
/packages/apps/Contacts/src/com/android/contacts/compat/
DCallSdkCompat.java32 public static final int CAPABILITY_CAN_PULL_CALL = 0x00800000; field in CallSdkCompat.Details
/packages/services/Telecomm/src/com/android/server/telecom/
DParcelableCallUtils.java499 Connection.CAPABILITY_CAN_PULL_CALL,
500 android.telecom.Call.Details.CAPABILITY_CAN_PULL_CALL,
DCall.java1953 if ((capabilities |= Connection.CAPABILITY_CAN_PULL_CALL) > 0) { in stripUnsupportedCapabilities()
1954 capabilities &= ~Connection.CAPABILITY_CAN_PULL_CALL; in stripUnsupportedCapabilities()
2974 if (!can(Connection.CAPABILITY_CAN_PULL_CALL)) { in pullExternalCall()
/packages/services/Telephony/src/com/android/services/telephony/
DTelephonyConnection.java1428 newCapabilities = changeBitmask(newCapabilities, CAPABILITY_CAN_PULL_CALL, in updateConnectionCapabilities()