Home
last modified time | relevance | path

Searched refs:isSupported (Results 1 – 16 of 16) sorted by relevance

/cts/tests/tests/telephony/current/src/android/telephony/cts/
DSubscriptionManagerTest.java122 if (!isSupported()) return; in setUpClass()
143 if (!isSupported()) return; in tearDownClass()
149 if (!isSupported()) return; in setUp()
163 if (!isSupported()) return; in testCorrectness()
166 if (isSupported() && !hasCellular) { in testCorrectness()
169 } else if (!isSupported() && hasCellular) { in testCorrectness()
174 if (isSupported()) { in testCorrectness()
183 if (!isSupported()) return; in testGetActiveSubscriptionInfoCount()
190 if (!isSupported()) return; in testGetActiveSubscriptionInfoForIcc()
199 if (!isSupported()) return; in testIsActiveSubscriptionId()
[all …]
/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
DApkVerityInstallTest.java180 boolean isSupported) throws Exception { in testInstallSplitOnly() argument
192 .run(isSupported); in testInstallSplitOnly()
193 if (isSupported) { in testInstallSplitOnly()
202 boolean updateIncremental, boolean isSupported) throws Exception { in testInstallSplitOnlyMissingSignature() argument
216 isSupported && installIncremental && !isIncrementalDeliveryV2Feature(); in testInstallSplitOnlyMissingSignature()
224 boolean updateIncremental, boolean isSupported) throws Exception { in testInstallSplitOnlyWithoutBaseSignature() argument
234 .run(isSupported); in testInstallSplitOnlyWithoutBaseSignature()
235 if (isSupported) { in testInstallSplitOnlyWithoutBaseSignature()
244 boolean updateIncremental, boolean isSupported) throws Exception { in testInstallSplitAndSignatureForBase() argument
256 .run(isSupported); in testInstallSplitAndSignatureForBase()
[all …]
/cts/tests/tests/hardware/src/android/hardware/cts/
DHardwareBufferTest.java117 assertTrue(HardwareBuffer.isSupported(1, 1, HardwareBuffer.RGBA_8888, in testIsSupported()
119 assertTrue(HardwareBuffer.isSupported(1, 1, HardwareBuffer.RGBA_8888, in testIsSupported()
121 assertFalse(HardwareBuffer.isSupported(1, 1, HardwareBuffer.BLOB, in testIsSupported()
/cts/tests/tests/telephony/current/src/android/telephony/ims/cts/
DImsMmTelManagerTest.java514 mMmTelManager.isSupported(MmTelFeature.MmTelCapabilities.CAPABILITY_TYPE_VOICE, in testMethodPermissions()
534 mMmTelManager.isSupported(MmTelFeature.MmTelCapabilities.CAPABILITY_TYPE_VOICE, in testMethodPermissions()
551 (m) -> m.isSupported(MmTelFeature.MmTelCapabilities.CAPABILITY_TYPE_VOICE, in testMethodPermissions()
DSipDelegateManagerTest.java292 manager.isSupported(); in testIncorrectPermissions()
300 manager, SipDelegateManager::isSupported, ImsException.class, in testIncorrectPermissions()
310 manager, SipDelegateManager::isSupported, ImsException.class, in testIncorrectPermissions()
351 manager, SipDelegateManager::isSupported, ImsException.class, in testFeatureImsNotSupported()
405 SipDelegateManager::isSupported, ImsException.class, in testIsSupportedWithSipTransportCapable()
427 getSipDelegateManager(), SipDelegateManager::isSupported, in testIsSupportedWithSipTransportCapableCarrierConfigNotSet()
457 getSipDelegateManager(), SipDelegateManager::isSupported, in testIsSupportedWithSipTransportCapableOnlyRcs()
484 getSipDelegateManager(), SipDelegateManager::isSupported, in testIsSupportedWithSipTransportCapableButNotImplemented()
509 getSipDelegateManager(), SipDelegateManager::isSupported, in testIsSupportedWithSipTransportImplementedButNotCapable()
533 getSipDelegateManager(), SipDelegateManager::isSupported, in testIsSupportedWithSipTransportNotImplementedNotCapable()
/cts/tests/tests/deviceconfig/src/android/deviceconfig/cts/
DDeviceConfigApiTests.java115 assumeTrue(sUnsupportedReason, isSupported()); in assumeSupported()
123 if (!isSupported()) return; in cleanUp()
142 if (!isSupported()) return; in cleanUpAfterAllTests()
1096 private static boolean isSupported() { in isSupported() method in DeviceConfigApiTests
/cts/tests/camera/src/android/hardware/camera2/cts/
DRecordingTest.java718 if (!isSupported(sz, VIDEO_FRAME_RATE, VIDEO_FRAME_RATE)) { in videoPreviewSurfaceSharingTestByCamera()
1298 if (!isSupported(sz, VIDEO_FRAME_RATE, VIDEO_FRAME_RATE)) { in recordingSizeTestByCamera()
1561 boolean isSupported = isStreamConfigurationSupported( in videoSnapshotTestByCamera()
1563 if (!isSupported) { in videoSnapshotTestByCamera()
1578 boolean isSupported = isStreamConfigurationSupported( in videoSnapshotTestByCamera()
1580 if (!isSupported) { in videoSnapshotTestByCamera()
2325 private boolean isSupported(Size sz, int captureRate, int encodingRate) throws Exception {
/cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
DProtectedConfirmationTest.java66 ConfirmationPrompt.isSupported(getApplicationContext()); in onCreate()
/cts/tests/media/src/android/mediav2/cts/
DCodecTestBase.java627 boolean isSupported = codecCapabilities.isFeatureSupported(feature); in isFeatureSupported()
629 return isSupported; in isFeatureSupported()
637 boolean isSupported = true; in areFormatsSupported()
639 for (int i = 0; i < formats.size() && isSupported; i++) { in areFormatsSupported()
640 isSupported = codecCapabilities.isFormatSupported(formats.get(i)); in areFormatsSupported()
644 return isSupported; in areFormatsSupported()
/cts/tests/tests/media/src/android/media/cts/
DMediaCodecListTest.java354 boolean isSupported = false; in areRequiredCodecTypesSupported()
357 isSupported = true; in areRequiredCodecTypesSupported()
360 if (!isSupported) { in areRequiredCodecTypesSupported()
DAudioManagerTest.java1697 boolean isSupported = mAudioManager.isHdmiSystemAudioSupported(); in testIsHdmiSystemAudidoSupported()
1698 Log.d(TAG, "isHdmiSystemAudioSupported() = " + isSupported); in testIsHdmiSystemAudidoSupported()
1703 boolean isSupported = mAudioManager.isBluetoothScoAvailableOffCall(); in testIsBluetoothScoAvailableOffCall()
1704 Log.d(TAG, "isBluetoothScoAvailableOffCall() = " + isSupported); in testIsBluetoothScoAvailableOffCall()
DMediaPlayerTest.java1061 boolean isSupported = false; in testRecordedVideoPlaybackWithAngle()
1080 isSupported = true; in testRecordedVideoPlaybackWithAngle()
1086 if (!isSupported) { in testRecordedVideoPlaybackWithAngle()
DMediaCodecBlockModelTest.java767 if (!HardwareBuffer.isSupported( in runEncodeShortVideo()
/cts/tests/tests/opengl/src/android/opengl/cts/
DCompressedTextureSurfaceView.java284 if (mCompressedTexture != null && !mCompressedTexture.isSupported()) { in onSurfaceCreated()
DCompressedTextureLoader.java75 public boolean isSupported() { return isFormatSupported(mFormatName); } in isSupported() method in CompressedTextureLoader.Texture
/cts/tests/tests/wifi/src/android/net/wifi/cts/
DWifiManagerTest.java4126 boolean isSupported = mWifiManager.is60GHzBandSupported(); in testIs60GhzBandSupportedOnROrOlder()