Searched refs:sse (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/net/ |
D | IpSecManager.java | 994 private static void maybeHandleServiceSpecificException(ServiceSpecificException sse) { in maybeHandleServiceSpecificException() argument 996 if (sse.errorCode == OsConstants.EINVAL) { in maybeHandleServiceSpecificException() 997 throw new IllegalArgumentException(sse); in maybeHandleServiceSpecificException() 998 } else if (sse.errorCode == OsConstants.EAGAIN) { in maybeHandleServiceSpecificException() 999 throw new IllegalStateException(sse); in maybeHandleServiceSpecificException() 1000 } else if (sse.errorCode == OsConstants.EOPNOTSUPP in maybeHandleServiceSpecificException() 1001 || sse.errorCode == OsConstants.EPROTONOSUPPORT) { in maybeHandleServiceSpecificException() 1002 throw new UnsupportedOperationException(sse); in maybeHandleServiceSpecificException() 1013 rethrowUncheckedExceptionFromServiceSpecificException(ServiceSpecificException sse) { in rethrowUncheckedExceptionFromServiceSpecificException() argument 1014 maybeHandleServiceSpecificException(sse); in rethrowUncheckedExceptionFromServiceSpecificException() [all …]
|
/frameworks/rs/driver/runtime/arch/ |
D | x86_sse2.ll | 4 declare <4 x float> @llvm.x86.sse.min.ps(<4 x float>, <4 x float>) 5 declare <4 x float> @llvm.x86.sse.max.ps(<4 x float>, <4 x float>) 6 declare <4 x float> @llvm.x86.sse.min.ss(<4 x float>, <4 x float>) 7 declare <4 x float> @llvm.x86.sse.max.ss(<4 x float>, <4 x float>) 18 …%1 = tail call <4 x float> @llvm.x86.sse.min.ps(<4 x float> %in, <4 x float> %high) nounwind readn… 19 …%2 = tail call <4 x float> @llvm.x86.sse.max.ps(<4 x float> %1, <4 x float> %low) nounwind readnone 45 %4 = tail call <4 x float> @llvm.x86.sse.min.ss(<4 x float> %1, <4 x float> %3) nounwind readnone 46 %5 = tail call <4 x float> @llvm.x86.sse.max.ss(<4 x float> %4, <4 x float> %2) nounwind readnone
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsMmTelManager.java | 828 } catch (ServiceSpecificException sse) { in isSupported() 829 throw new ImsException(sse.getMessage(), sse.errorCode); in isSupported() 1035 } catch (ServiceSpecificException sse) { in isCrossSimCallingEnabled() 1036 throw new ImsException(sse.getMessage(), sse.errorCode); in isCrossSimCallingEnabled() 1080 } catch (ServiceSpecificException sse) { in setCrossSimCallingEnabled() 1081 throw new ImsException(sse.getMessage(), sse.errorCode); in setCrossSimCallingEnabled() 1478 } catch (ServiceSpecificException sse) { in getFeatureState() 1479 throw new ImsException(sse.getMessage(), sse.errorCode); in getFeatureState()
|
/frameworks/base/core/java/android/hardware/camera2/ |
D | CameraManager.java | 429 ServiceSpecificException sse = new ServiceSpecificException( in getPhysicalCameraMultiResolutionConfigs() 432 throwAsPublicException(sse); in getPhysicalCameraMultiResolutionConfigs() 624 ServiceSpecificException sse = new ServiceSpecificException( in openCameraDeviceUserAsync() 627 deviceImpl.setRemoteFailure(sse); in openCameraDeviceUserAsync() 628 throwAsPublicException(sse); in openCameraDeviceUserAsync() 1271 ServiceSpecificException sse = new ServiceSpecificException( in injectCamera() 1274 throwAsPublicException(sse); in injectCamera()
|