Home
last modified time | relevance | path

Searched refs:getIntValue (Results 1 – 25 of 33) sorted by relevance

12

/aosp14/frameworks/base/services/core/java/com/android/server/hdmi/
H A DRequestSadAction.java59 if (hdmiCecConfig.getIntValue( in RequestSadAction()
64 if (hdmiCecConfig.getIntValue( in RequestSadAction()
69 if (hdmiCecConfig.getIntValue( in RequestSadAction()
74 if (hdmiCecConfig.getIntValue( in RequestSadAction()
79 if (hdmiCecConfig.getIntValue( in RequestSadAction()
84 if (hdmiCecConfig.getIntValue( in RequestSadAction()
89 if (hdmiCecConfig.getIntValue( in RequestSadAction()
94 if (hdmiCecConfig.getIntValue( in RequestSadAction()
99 if (hdmiCecConfig.getIntValue( in RequestSadAction()
104 if (hdmiCecConfig.getIntValue( in RequestSadAction()
[all …]
H A DHdmiCecLocalDeviceSource.java332 if (hdmiCecConfig.getIntValue( in getRcFeatures()
337 if (hdmiCecConfig.getIntValue( in getRcFeatures()
342 if (hdmiCecConfig.getIntValue( in getRcFeatures()
347 if (hdmiCecConfig.getIntValue( in getRcFeatures()
352 if (hdmiCecConfig.getIntValue(HdmiControlManager in getRcFeatures()
H A DHdmiControlService.java681 mHdmiControlEnabled = mHdmiCecConfig.getIntValue( in initService()
694 mEarcEnabled = (mHdmiCecConfig.getIntValue( in initService()
700 setHdmiCecVolumeControlEnabledInternal(getHdmiCecConfig().getIntValue( in initService()
787 boolean enabled = mHdmiCecConfig.getIntValue( in initService()
805 boolean enabled = mHdmiCecConfig.getIntValue( in initService()
849 boolean earcEnabledSetting = mHdmiCecConfig.getIntValue( in initService()
869 setEarcEnabled(mHdmiCecConfig.getIntValue( in initService()
883 boolean soundbarModeSetting = mHdmiCecConfig.getIntValue( in initService()
894 boolean soundbarModeSetting = mHdmiCecConfig.getIntValue( in initService()
1237 int settingsCecVersion = getHdmiCecConfig().getIntValue( in initializeCec()
[all …]
H A DHdmiCecConfig.java203 Integer getIntValue() { in getIntValue() method in HdmiCecConfig.Value
1054 allowedValues.add(allowedValue.getIntValue()); in getAllowedIntValues()
1086 return getSetting(name).getDefaultValue().getIntValue(); in getDefaultIntValue()
1108 public int getIntValue(@NonNull @SettingName String name) { in getIntValue() method in HdmiCecConfig
1118 String defaultValue = Integer.toString(setting.getDefaultValue().getIntValue()); in getIntValue()
H A DHdmiCecLocalDeviceTv.java161 mSystemAudioControlFeatureEnabled = service.getHdmiCecConfig().getIntValue( in HdmiCecLocalDeviceTv()
1309 return mService.getHdmiCecConfig().getIntValue( in getAutoWakeup()
1405 mService.getHdmiCecConfig().getIntValue( in onStandby()
1615 @HdmiControlManager.RcProfileTv int profile = mService.getHdmiCecConfig().getIntValue( in getRcFeatures()
H A DHdmiCecLocalDeviceAudioSystem.java117 mRoutingControlFeatureEnabled = mService.getHdmiCecConfig().getIntValue( in HdmiCecLocalDeviceAudioSystem()
120 mSystemAudioControlFeatureEnabled = mService.getHdmiCecConfig().getIntValue( in HdmiCecLocalDeviceAudioSystem()
963 boolean systemAudioModeMutingEnabled = mService.getHdmiCecConfig().getIntValue( in setSystemAudioMode()
H A DHdmiCecLocalDevicePlayback.java393 if (mService.getHdmiCecConfig().getIntValue( in handleSetMenuLanguage()
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/
H A DAuthenticationStatsPersister.java77 getIntValue(frrStatsJson, USER_ID, in getAllFrrStats()
79 getIntValue(frrStatsJson, FACE_ATTEMPTS), in getAllFrrStats()
80 getIntValue(frrStatsJson, FACE_REJECTIONS), in getAllFrrStats()
81 getIntValue(frrStatsJson, ENROLLMENT_NOTIFICATIONS), in getAllFrrStats()
85 getIntValue(frrStatsJson, USER_ID, in getAllFrrStats()
87 getIntValue(frrStatsJson, FINGERPRINT_ATTEMPTS), in getAllFrrStats()
88 getIntValue(frrStatsJson, FINGERPRINT_REJECTIONS), in getAllFrrStats()
89 getIntValue(frrStatsJson, ENROLLMENT_NOTIFICATIONS), in getAllFrrStats()
196 private int getIntValue(JSONObject jsonObject, String key) throws JSONException { in getIntValue() method in AuthenticationStatsPersister
197 return getIntValue(jsonObject, key, 0 /* defaultValue */); in getIntValue()
[all …]
/aosp14/frameworks/base/core/java/android/animation/
H A DIntKeyframeSet.java40 return getIntValue(fraction); in getValue()
56 public int getIntValue(float fraction) { in getIntValue() method in IntKeyframeSet
60 int prevValue = prevKeyframe.getIntValue(); in getIntValue()
61 int nextValue = nextKeyframe.getIntValue(); in getIntValue()
76 int prevValue = prevKeyframe.getIntValue(); in getIntValue()
77 int nextValue = nextKeyframe.getIntValue(); in getIntValue()
96 int prevValue = prevKeyframe.getIntValue(); in getIntValue()
97 int nextValue = nextKeyframe.getIntValue(); in getIntValue()
H A DPathKeyframes.java186 public int getIntValue(float fraction) {
200 public int getIntValue(float fraction) {
235 return getIntValue(fraction);
H A DKeyframes.java74 int getIntValue(float fraction); in getIntValue() method
H A DKeyframe.java316 public int getIntValue() { in getIntValue() method in Keyframe.IntKeyframe
/aosp14/frameworks/base/services/core/java/com/android/server/integrity/parser/
H A DRuleBinaryParser.java34 import static com.android.server.integrity.parser.BinaryFileOperations.getIntValue;
181 long upper = getIntValue(bitInputStream); in parseAtomicFormula()
182 long lower = getIntValue(bitInputStream); in parseAtomicFormula()
H A DRuleIndexingController.java21 import static com.android.server.integrity.parser.BinaryFileOperations.getIntValue;
87 int value = getIntValue(bitInputStream); in getNextIndexGroup()
H A DBinaryFileOperations.java70 public static int getIntValue(BitInputStream bitInputStream) throws IOException { in getIntValue() method in BinaryFileOperations
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/integrity/parser/
H A DBinaryFileOperationsTest.java21 import static com.android.server.integrity.parser.BinaryFileOperations.getIntValue;
96 assertThat(getIntValue(inputStream)).isEqualTo(randomValue); in testGetIntValue()
/aosp14/frameworks/base/services/core/java/com/android/server/stats/bootstrap/
H A DStatsBootstrapAtomService.java51 builder.writeInt(value.getIntValue()); in reportBootstrapAtom()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/hdmi/
H A DHdmiCecConfigTest.java407 () -> hdmiCecConfig.getIntValue("foo")); in getIntValue_InvalidSetting()
414 () -> hdmiCecConfig.getIntValue( in getIntValue_InvalidType()
425 assertThat(hdmiCecConfig.getIntValue( in getIntValue_SharedPref_BasicSanity()
H A DHdmiControlServiceTest.java288 assertThat(mHdmiControlServiceSpy.getHdmiCecConfig().getIntValue( in setAndGetCecVolumeControlEnabled_isApi()
295 assertThat(mHdmiControlServiceSpy.getHdmiCecConfig().getIntValue( in setAndGetCecVolumeControlEnabled_isApi()
308 assertThat(mHdmiControlServiceSpy.getHdmiCecConfig().getIntValue( in setAndGetCecVolumeControlEnabledInternal_doesNotChangeSetting()
314 assertThat(mHdmiControlServiceSpy.getHdmiCecConfig().getIntValue( in setAndGetCecVolumeControlEnabledInternal_doesNotChangeSetting()
340 assertThat(mHdmiControlServiceSpy.getHdmiCecConfig().getIntValue( in disableAndReenableCec_volumeControlReturnsToOriginalValue_disabled()
345 assertThat(mHdmiControlServiceSpy.getHdmiCecConfig().getIntValue( in disableAndReenableCec_volumeControlReturnsToOriginalValue_disabled()
/aosp14/frameworks/base/media/java/android/media/
H A DExifInterface.java1005 public int getIntValue(ByteOrder byteOrder) { in getIntValue() method in ExifInterface.ExifAttribute
1754 return exifAttribute.getIntValue(mExifByteOrder); in getAttributeInt()
2304 int imageLength = imageLengthAttribute.getIntValue(mExifByteOrder); in getThumbnailBitmap()
2305 int imageWidth = imageWidthAttribute.getIntValue(mExifByteOrder); in getThumbnailBitmap()
4229 && attribute.getIntValue(mExifByteOrder) == 65535)) { in readImageFileDirectory()
4291 jpegInterchangeFormatAttribute.getIntValue(mExifByteOrder); in retrieveJpegImageSize()
4487 int imageLengthValue = imageLengthAttribute.getIntValue(mExifByteOrder); in isThumbnail()
4488 int imageWidthValue = imageWidthAttribute.getIntValue(mExifByteOrder); in isThumbnail()
4590 int topBorderValue = topBorderAttribute.getIntValue(mExifByteOrder); in updateImageSizeValues()
4592 int rightBorderValue = rightBorderAttribute.getIntValue(mExifByteOrder); in updateImageSizeValues()
[all …]
/aosp14/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp57 static int getIntValue(JNIEnv* env, jobject object, const char* fieldName);
119 int Utility::getIntValue(JNIEnv* env, jobject object, const char* fieldName) { in getIntValue() function in Utility
432 int mInfoType = Utility::getIntValue(env, drmInfoObject, "mInfoType"); in android_drm_DrmManagerClient_processDrmInfo()
513 int mInfoType = Utility::getIntValue(env, drmInfoRequest, "mInfoType"); in android_drm_DrmManagerClient_acquireDrmInfo()
/aosp14/frameworks/base/services/core/java/com/android/server/input/
H A DKeyboardMetricsCollector.java248 public int getIntValue() { in getIntValue() method in KeyboardMetricsCollector.KeyboardLogEvent
380 vendorId, productId, keyboardSystemEvent.getIntValue(), keyCodes, modifierState); in logKeyboardSystemsEventReportedAtom()
/aosp14/frameworks/base/core/java/android/content/
H A DRestrictionEntry.java292 public int getIntValue() { in getIntValue() method in RestrictionEntry
H A DRestrictionsManager.java776 bundle.putInt(entry.getKey(), entry.getIntValue()); in addRestrictionToBundle()
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/usage/
H A DAppIdleHistory.java732 final int version = getIntValue(parser, ATTR_VERSION, XML_VERSION_INITIAL); in readAppIdleTimes()
817 final int bucket = getIntValue(parser, ATTR_BUCKET, STANDBY_BUCKET_UNKNOWN); in readBucketExpiryTimes()
845 private int getIntValue(XmlPullParser parser, String attrName, int defValue) { in getIntValue() method in AppIdleHistory

12