Home
last modified time | relevance | path

Searched refs:hasProperty (Results 1 – 25 of 29) sorted by relevance

12

/aosp12/frameworks/base/telecomm/java/android/telecom/
H A DCall.java841 public boolean hasProperty(int property) { in hasProperty() method in Call.Details
842 return hasProperty(mCallProperties, property); in hasProperty()
854 if (hasProperty(properties, PROPERTY_CONFERENCE)) { in propertiesToString()
860 if (hasProperty(properties, PROPERTY_WIFI)) { in propertiesToString()
863 if (hasProperty(properties, PROPERTY_HIGH_DEF_AUDIO)) { in propertiesToString()
869 if (hasProperty(properties, PROPERTY_IS_EXTERNAL_CALL)) { in propertiesToString()
875 if (hasProperty(properties, PROPERTY_ASSISTED_DIALING)) { in propertiesToString()
881 if (hasProperty(properties, PROPERTY_RTT)) { in propertiesToString()
884 if (hasProperty(properties, PROPERTY_VOIP_AUDIO_MODE)) { in propertiesToString()
890 if (hasProperty(properties, PROPERTY_CROSS_SIM)) { in propertiesToString()
[all …]
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/telephony/
H A DBluetoothCall.java281 return getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE); in isConference()
301 return getDetails().hasProperty(Call.Details.PROPERTY_IS_EXTERNAL_CALL); in isExternalCall()
323 public boolean hasProperty(int property) { in hasProperty() method in BluetoothCall
324 return getDetails().hasProperty(property); in hasProperty()
H A DBluetoothInCallService.java616 && conferenceCall.hasProperty(Call.Details.PROPERTY_GENERIC_CONFERENCE)) { in sendClccForCall()
708 if (call.hasProperty(Call.Details.PROPERTY_SELF_MANAGED)) { in getClccMapKey()
/aosp12/packages/apps/Dialer/java/com/android/incallui/call/
H A 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()
H A DDialerCall.java825 if (hasProperty(Details.PROPERTY_EMERGENCY_CALLBACK_MODE)) { in isPotentialEmergencyCallback()
1011 public boolean hasProperty(int property) { in hasProperty() method in DialerCall
1012 return telecomCall.getDetails().hasProperty(property); in hasProperty()
1036 return hasProperty(Call.Details.PROPERTY_CONFERENCE); in isConferenceCall()
1202 return hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL); in isExternalCall()
1521 boolean showCallbackNumber = hasProperty(Details.PROPERTY_EMERGENCY_CALLBACK_MODE); in getCallbackNumber()
/aosp12/packages/apps/Dialer/java/com/android/incallui/
H A DExternalCallNotifier.java304 if (call.getDetails().hasProperty(android.telecom.Call.Details.PROPERTY_CONFERENCE) in getLargeIconToDisplay()
306 .hasProperty(android.telecom.Call.Details.PROPERTY_GENERIC_CONFERENCE)) { in getLargeIconToDisplay()
349 if (call.getDetails().hasProperty(android.telecom.Call.Details.PROPERTY_CONFERENCE)) { in getContentTitle()
352 call.getDetails().hasProperty(android.telecom.Call.Details.PROPERTY_GENERIC_CONFERENCE)); in getContentTitle()
H A DCallCardPresenter.java447 primary.hasProperty(PROPERTY_ENTERPRISE_CALL) in updatePrimaryCallState()
451 isPrimaryCallActive() && primary.hasProperty(Details.PROPERTY_HIGH_DEF_AUDIO); in updatePrimaryCallState()
454 && !primary.hasProperty(DialerCall.PROPERTY_CODEC_KNOWN) in updatePrimaryCallState()
481 .setIsWifi(primary.hasProperty(Details.PROPERTY_WIFI)) in updatePrimaryCallState()
484 && !primary.hasProperty(Details.PROPERTY_GENERIC_CONFERENCE)) in updatePrimaryCallState()
654 boolean hasWorkCallProperty = primary.hasProperty(PROPERTY_ENTERPRISE_CALL); in updatePrimaryDisplayInfo()
670 context, primary.hasProperty(Details.PROPERTY_GENERIC_CONFERENCE))) in updatePrimaryDisplayInfo()
876 context, secondary.hasProperty(Details.PROPERTY_GENERIC_CONFERENCE))) in updateSecondaryDisplayInfo()
H A DStatusBarNotifier.java561 context, call.hasProperty(Details.PROPERTY_GENERIC_CONFERENCE)); in getContentTitle()
608 call.isConferenceCall() && !call.hasProperty(Details.PROPERTY_GENERIC_CONFERENCE)); in getLargeIconToDisplay()
657 } else if (call.hasProperty(PROPERTY_HIGH_DEF_AUDIO) in getIconToDisplay()
663 } else if (call.hasProperty(Details.PROPERTY_HAS_CDMA_VOICE_PRIVACY)) { in getIconToDisplay()
692 if (call.hasProperty(Details.PROPERTY_WIFI)) { in getContentString()
701 } else if (call.hasProperty(Details.PROPERTY_WIFI)) { in getContentString()
725 boolean isWorkCall = call.hasProperty(PROPERTY_ENTERPRISE_CALL); in getContentString()
H A 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()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/soap/
H A DSppResponseMessage.java74 if (!response.hasProperty(SPPErrorProperty)) { in SppResponseMessage()
79 if (response.hasProperty(SPPErrorProperty)) { in SppResponseMessage()
/aosp12/frameworks/native/libs/input/
H A DPropertyMap.cpp46 bool PropertyMap::hasProperty(const String8& key) const { in hasProperty() function in android::PropertyMap
187 if (mMap->hasProperty(keyToken)) { in parse()
H A DPropertyMap_fuzz.cpp37 propertyMap.hasProperty(key); in __anond7bced8b0302()
/aosp12/build/soong/android/
H A Dneverallow.go594 if hasProperty(properties, v) {
603 if !hasProperty(properties, v) {
610 func hasProperty(properties []interface{}, prop ruleProperty) bool { func
/aosp12/frameworks/native/include/input/
H A DPropertyMap.h64 bool hasProperty(const String8& key) const;
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallLogManager.java171 !call.hasProperty(Connection.PROPERTY_REMOTELY_HOSTED)) { in shouldLogDisconnectedCall()
179 !call.hasProperty(Connection.PROPERTY_REMOTELY_HOSTED)) { in shouldLogDisconnectedCall()
185 if (call.getParentCall() != null && call.hasProperty(Connection.PROPERTY_REMOTELY_HOSTED)) { in shouldLogDisconnectedCall()
/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DCallLogManagerTest.java933 when(fakeCall.hasProperty(eq(Connection.PROPERTY_REMOTELY_HOSTED))).thenReturn(true); in testLogRemotelyHostedConferenceWithChildren()
956 when(fakeCall.hasProperty(eq(Connection.PROPERTY_REMOTELY_HOSTED))).thenReturn(true); in testLogRemotelyHostedConferenceWithNoChildren()
979 when(fakeConfCall.hasProperty(eq(Connection.PROPERTY_REMOTELY_HOSTED))).thenReturn(true); in testDoNotLogChildOfRemotelyHostedConference()
996 when(fakeChild.hasProperty(eq(Connection.PROPERTY_REMOTELY_HOSTED))).thenReturn(true); in testDoNotLogChildOfRemotelyHostedConference()
1071 when(fakeCall.hasProperty(eq(Connection.PROPERTY_REMOTELY_HOSTED))).thenReturn(false); in makeFakeCall()
H A DBasicCallTests.java884 assertTrue(Call.Details.hasProperty( in testCdmaEnhancedPrivacyVoiceCall()
904 assertFalse(Call.Details.hasProperty( in testDropCdmaEnhancedPrivacyVoiceCall()
/aosp12/packages/apps/Dialer/java/com/android/incallui/video/impl/
H A DVideoChargesAlertDialogFragment.java60 if (call.hasProperty(Details.PROPERTY_WIFI)) { in shouldShow()
/aosp12/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
H A DCallDetail.java154 return callDetail != null && callDetail.hasProperty(Call.Details.PROPERTY_CONFERENCE); in isConferenceCall()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/
H A DPostDevDataMessageTest.java150 request.hasProperty(SoapEnvelope.NS20, SppConstants.PROPERTY_MO_CONTAINER)); in verifyCommonFields()
/aosp12/packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
H A DUiCallManager.java208 && primaryCall.getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE); in setAudioRoute()
/aosp12/frameworks/native/services/inputflinger/host/
H A DInputDriver.cpp247 if (map->propertyMap->hasProperty(keyString)) { in inputGetDeviceProperty()
/aosp12/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/activecall/
H A DOnGoingCallControllerBarFragment.java172 && pair.first.getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE); in onCreate()
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/telephony/
H A DBluetoothInCallServiceTest.java423 when(parentCall.hasProperty(Call.Details.PROPERTY_GENERIC_CONFERENCE)).thenReturn(true); in testListCurrentCallsCdmaHold()
473 when(parentCall.hasProperty(Call.Details.PROPERTY_GENERIC_CONFERENCE)).thenReturn(true); in testListCurrentCallsCdmaConference()
703 when(parentCall.hasProperty(Call.Details.PROPERTY_GENERIC_CONFERENCE)).thenReturn(true); in testListCurrentCallsHeldImsCepConference()
/aosp12/packages/apps/Car/Dialer/framework/fake/src/com/android/car/dialer/framework/
H A DMockCallManager.java533 when(mDetails.hasProperty(Call.Details.PROPERTY_CONFERENCE)).thenReturn(true); in updateCallDetails()

12