Home
last modified time | relevance | path

Searched refs:getInt (Results 1 – 25 of 1168) sorted by relevance

12345678910>>...47

/frameworks/base/media/java/android/media/browse/
DMediaBrowserUtils.java35 return options2.getInt(MediaBrowser.EXTRA_PAGE, -1) == -1 in areSameOptions()
36 && options2.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1) == -1; in areSameOptions()
38 return options1.getInt(MediaBrowser.EXTRA_PAGE, -1) == -1 in areSameOptions()
39 && options1.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1) == -1; in areSameOptions()
41 return options1.getInt(MediaBrowser.EXTRA_PAGE, -1) in areSameOptions()
42 == options2.getInt(MediaBrowser.EXTRA_PAGE, -1) in areSameOptions()
43 && options1.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1) in areSameOptions()
44 == options2.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1); in areSameOptions()
52 int page1 = options1 == null ? -1 : options1.getInt(MediaBrowser.EXTRA_PAGE, -1); in hasDuplicatedItems()
53 int page2 = options2 == null ? -1 : options2.getInt(MediaBrowser.EXTRA_PAGE, -1); in hasDuplicatedItems()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/utils/
DUserSettingDeviceConfigMediatorTest.java48 assertEquals(1, mediator.getInt("int", 123)); in testDeviceConfigOnly()
49 assertEquals(123, mediator.getInt("invalidKey", 123)); in testDeviceConfigOnly()
55 assertEquals(987654321, mediator.getInt("invalidKey", 987654321)); in testDeviceConfigOnly()
62 assertEquals(123, mediator.getInt("int", 123)); in testDeviceConfigOnly()
63 assertEquals(123, mediator.getInt("invalidKey", 123)); in testDeviceConfigOnly()
69 assertEquals(987654321, mediator.getInt("invalidKey", 987654321)); in testDeviceConfigOnly()
83 assertEquals(1, mediator.getInt("int", 123)); in testSettingsOnly()
84 assertEquals(123, mediator.getInt("invalidKey", 123)); in testSettingsOnly()
90 assertEquals(987654321, mediator.getInt("invalidKey", 987654321)); in testSettingsOnly()
97 assertEquals(123, mediator.getInt("int", 123)); in testSettingsOnly()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/audio/
DLoudnessCodecHelperTest.java213 assertEquals(64, loudnessParameters.getInt(KEY_AAC_DRC_TARGET_REFERENCE_LEVEL)); in checkParcelableBundle_forMpeg4CodecInputProperties()
214 assertEquals(1, loudnessParameters.getInt(KEY_AAC_DRC_HEAVY_COMPRESSION)); in checkParcelableBundle_forMpeg4CodecInputProperties()
219 assertEquals(64, loudnessParameters.getInt(KEY_AAC_DRC_TARGET_REFERENCE_LEVEL)); in checkParcelableBundle_forMpeg4CodecInputProperties()
220 assertEquals(1, loudnessParameters.getInt(KEY_AAC_DRC_HEAVY_COMPRESSION)); in checkParcelableBundle_forMpeg4CodecInputProperties()
225 assertEquals(96, loudnessParameters.getInt(KEY_AAC_DRC_TARGET_REFERENCE_LEVEL)); in checkParcelableBundle_forMpeg4CodecInputProperties()
226 assertEquals(1, loudnessParameters.getInt(KEY_AAC_DRC_HEAVY_COMPRESSION)); in checkParcelableBundle_forMpeg4CodecInputProperties()
231 assertEquals(96, loudnessParameters.getInt(KEY_AAC_DRC_TARGET_REFERENCE_LEVEL)); in checkParcelableBundle_forMpeg4CodecInputProperties()
232 assertEquals(0, loudnessParameters.getInt(KEY_AAC_DRC_HEAVY_COMPRESSION)); in checkParcelableBundle_forMpeg4CodecInputProperties()
237 assertEquals(124, loudnessParameters.getInt(KEY_AAC_DRC_TARGET_REFERENCE_LEVEL)); in checkParcelableBundle_forMpeg4CodecInputProperties()
238 assertEquals(0, loudnessParameters.getInt(KEY_AAC_DRC_HEAVY_COMPRESSION)); in checkParcelableBundle_forMpeg4CodecInputProperties()
[all …]
/frameworks/base/services/core/java/com/android/server/locksettings/
DVersionedPasswordMetrics.java73 final int version = buffer.getInt(); in deserialize()
74 PasswordMetrics metrics = new PasswordMetrics(buffer.getInt(), buffer.getInt(), in deserialize()
75 buffer.getInt(), buffer.getInt(), buffer.getInt(), buffer.getInt(), buffer.getInt(), in deserialize()
76 buffer.getInt(), buffer.getInt(), buffer.getInt()); in deserialize()
/frameworks/base/apct-tests/perftests/core/src/android/database/
DTableHelper.java72 cursor.getInt(cursorIndexOfA);
136 cursor.getInt(cursorIndexOfA);
137 cursor.getInt(cursorIndexOfB);
138 cursor.getInt(cursorIndexOfC);
139 cursor.getInt(cursorIndexOfD);
140 cursor.getInt(cursorIndexOfE);
141 cursor.getInt(cursorIndexOfF);
142 cursor.getInt(cursorIndexOfG);
143 cursor.getInt(cursorIndexOfH);
144 cursor.getInt(cursorIndexOfI);
[all …]
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/fuelgauge/
DBatterySaverUtilsTest.java91 assertEquals(-1, Secure.getInt(mMockResolver, Secure.LOW_POWER_WARNING_ACKNOWLEDGED, -1)); in testSetPowerSaveMode_enableWithWarning_firstCall_needConfirmationWarning()
93 Secure.getInt(mMockResolver, Secure.EXTRA_LOW_POWER_WARNING_ACKNOWLEDGED, -1)); in testSetPowerSaveMode_enableWithWarning_firstCall_needConfirmationWarning()
95 Secure.getInt(mMockResolver, Secure.LOW_POWER_MANUAL_ACTIVATION_COUNT, -2)); in testSetPowerSaveMode_enableWithWarning_firstCall_needConfirmationWarning()
114 assertEquals(1, Secure.getInt(mMockResolver, Secure.LOW_POWER_WARNING_ACKNOWLEDGED, -1)); in testSetPowerSaveMode_enableWithWarning_secondCall_expectUpdateIntent()
116 Secure.getInt(mMockResolver, Secure.EXTRA_LOW_POWER_WARNING_ACKNOWLEDGED, -1)); in testSetPowerSaveMode_enableWithWarning_secondCall_expectUpdateIntent()
118 Secure.getInt(mMockResolver, Secure.LOW_POWER_MANUAL_ACTIVATION_COUNT, -2)); in testSetPowerSaveMode_enableWithWarning_secondCall_expectUpdateIntent()
137 assertEquals(1, Secure.getInt(mMockResolver, Secure.LOW_POWER_WARNING_ACKNOWLEDGED, -1)); in testSetPowerSaveMode_enableWithWarning_thirdCall_expectUpdateIntent()
139 Secure.getInt(mMockResolver, Secure.EXTRA_LOW_POWER_WARNING_ACKNOWLEDGED, -1)); in testSetPowerSaveMode_enableWithWarning_thirdCall_expectUpdateIntent()
141 Secure.getInt(mMockResolver, Secure.LOW_POWER_MANUAL_ACTIVATION_COUNT, -2)); in testSetPowerSaveMode_enableWithWarning_thirdCall_expectUpdateIntent()
161 assertEquals(1, Secure.getInt(mMockResolver, Secure.LOW_POWER_WARNING_ACKNOWLEDGED, -1)); in testSetPowerSaveMode_enableWithWarning_5thCall_needAutoSuggestionWarning()
[all …]
/frameworks/base/graphics/java/android/graphics/fonts/
DFontFileUtil.java100 int magicNumber = buffer.getInt(0); in analyzeStyle()
103 if (ttcIndex >= buffer.getInt(8 /* offset to number of fonts in TTC */)) { in analyzeStyle()
106 fontFileOffset = buffer.getInt( in analyzeStyle()
109 int sfntVersion = buffer.getInt(fontFileOffset); in analyzeStyle()
120 if (buffer.getInt(tableOffset) == OS2_TABLE_TAG) { in analyzeStyle()
121 os2TableOffset = buffer.getInt(tableOffset + 8 /* offset to the table */); in analyzeStyle()
197 int magicNumber = copied.getInt(0); in isCollectionFont()
223 int magicNumber = buffer.getInt(0); in getSupportedAxes()
226 if (index >= buffer.getInt(8 /* offset to number of fonts in TTC */)) { in getSupportedAxes()
229 fontFileOffset = buffer.getInt( in getSupportedAxes()
[all …]
/frameworks/base/core/tests/packagemonitortests/src/com/android/internal/content/
DPackageMonitorTest.java305 assertThat(capturedExtras.getInt(Intent.EXTRA_USER_HANDLE)) in testPackageMonitorDoHandlePackageEventPackageChanged()
306 .isEqualTo(expectedExtras.getInt(Intent.EXTRA_USER_HANDLE)); in testPackageMonitorDoHandlePackageEventPackageChanged()
307 assertThat(capturedExtras.getInt(Intent.EXTRA_UID)) in testPackageMonitorDoHandlePackageEventPackageChanged()
308 .isEqualTo(expectedExtras.getInt(Intent.EXTRA_UID)); in testPackageMonitorDoHandlePackageEventPackageChanged()
309 assertThat(capturedExtras.getInt(Intent.EXTRA_REASON)) in testPackageMonitorDoHandlePackageEventPackageChanged()
310 .isEqualTo(expectedExtras.getInt(Intent.EXTRA_REASON)); in testPackageMonitorDoHandlePackageEventPackageChanged()
340 assertThat(capturedExtras.getInt(Intent.EXTRA_USER_HANDLE)) in testPackageMonitorDoHandlePackageEventPackageRemovedReplacing()
341 .isEqualTo(expectedExtras.getInt(Intent.EXTRA_USER_HANDLE)); in testPackageMonitorDoHandlePackageEventPackageRemovedReplacing()
342 assertThat(capturedExtras.getInt(Intent.EXTRA_UID)) in testPackageMonitorDoHandlePackageEventPackageRemovedReplacing()
343 .isEqualTo(expectedExtras.getInt(Intent.EXTRA_UID)); in testPackageMonitorDoHandlePackageEventPackageRemovedReplacing()
[all …]
/frameworks/base/services/core/java/com/android/server/power/stats/
DWifiPowerStatsLayout.java227 mDeviceRxTimePosition = extras.getInt(EXTRA_DEVICE_RX_TIME_POSITION); in fromExtras()
228 mDeviceTxTimePosition = extras.getInt(EXTRA_DEVICE_TX_TIME_POSITION); in fromExtras()
229 mDeviceScanTimePosition = extras.getInt(EXTRA_DEVICE_SCAN_TIME_POSITION); in fromExtras()
230 mDeviceBasicScanTimePosition = extras.getInt(EXTRA_DEVICE_BASIC_SCAN_TIME_POSITION); in fromExtras()
231 mDeviceBatchedScanTimePosition = extras.getInt(EXTRA_DEVICE_BATCHED_SCAN_TIME_POSITION); in fromExtras()
232 mDeviceIdleTimePosition = extras.getInt(EXTRA_DEVICE_IDLE_TIME_POSITION); in fromExtras()
233 mDeviceActiveTimePosition = extras.getInt(EXTRA_DEVICE_ACTIVE_TIME_POSITION); in fromExtras()
234 mUidRxBytesPosition = extras.getInt(EXTRA_UID_RX_BYTES_POSITION); in fromExtras()
235 mUidTxBytesPosition = extras.getInt(EXTRA_UID_TX_BYTES_POSITION); in fromExtras()
236 mUidRxPacketsPosition = extras.getInt(EXTRA_UID_RX_PACKETS_POSITION); in fromExtras()
[all …]
DMobileRadioPowerStatsLayout.java205 mDeviceSleepTimePosition = extras.getInt(EXTRA_DEVICE_SLEEP_TIME_POSITION); in fromExtras()
206 mDeviceIdleTimePosition = extras.getInt(EXTRA_DEVICE_IDLE_TIME_POSITION); in fromExtras()
207 mDeviceScanTimePosition = extras.getInt(EXTRA_DEVICE_SCAN_TIME_POSITION); in fromExtras()
208 mDeviceCallTimePosition = extras.getInt(EXTRA_DEVICE_CALL_TIME_POSITION); in fromExtras()
209 mDeviceCallPowerPosition = extras.getInt(EXTRA_DEVICE_CALL_POWER_POSITION); in fromExtras()
210 mStateRxTimePosition = extras.getInt(EXTRA_STATE_RX_TIME_POSITION); in fromExtras()
211 mStateTxTimesPosition = extras.getInt(EXTRA_STATE_TX_TIMES_POSITION); in fromExtras()
212 mStateTxTimesCount = extras.getInt(EXTRA_STATE_TX_TIMES_COUNT); in fromExtras()
213 mUidRxBytesPosition = extras.getInt(EXTRA_UID_RX_BYTES_POSITION); in fromExtras()
214 mUidTxBytesPosition = extras.getInt(EXTRA_UID_TX_BYTES_POSITION); in fromExtras()
[all …]
DBluetoothPowerStatsLayout.java135 mDeviceRxTimePosition = extras.getInt(EXTRA_DEVICE_RX_TIME_POSITION); in fromExtras()
136 mDeviceTxTimePosition = extras.getInt(EXTRA_DEVICE_TX_TIME_POSITION); in fromExtras()
137 mDeviceIdleTimePosition = extras.getInt(EXTRA_DEVICE_IDLE_TIME_POSITION); in fromExtras()
138 mDeviceScanTimePosition = extras.getInt(EXTRA_DEVICE_SCAN_TIME_POSITION); in fromExtras()
139 mUidRxBytesPosition = extras.getInt(EXTRA_UID_RX_BYTES_POSITION); in fromExtras()
140 mUidTxBytesPosition = extras.getInt(EXTRA_UID_TX_BYTES_POSITION); in fromExtras()
141 mUidScanTimePosition = extras.getInt(EXTRA_UID_SCAN_TIME_POSITION); in fromExtras()
DCpuPowerStatsLayout.java163 extras.getInt(EXTRA_DEVICE_TIME_BY_SCALING_STEP_POSITION); in fromExtras()
165 extras.getInt(EXTRA_DEVICE_TIME_BY_SCALING_STEP_COUNT); in fromExtras()
167 extras.getInt(EXTRA_DEVICE_TIME_BY_CLUSTER_POSITION); in fromExtras()
169 extras.getInt(EXTRA_DEVICE_TIME_BY_CLUSTER_COUNT); in fromExtras()
170 mUidPowerBracketsPosition = extras.getInt(EXTRA_UID_BRACKETS_POSITION); in fromExtras()
/frameworks/base/core/java/android/os/incremental/
DIncrementalMetrics.java51 return mData.getInt(IIncrementalService.METRICS_STORAGE_HEALTH_STATUS_CODE, -1); in getStorageHealthStatusCode()
58 return mData.getInt(IIncrementalService.METRICS_DATA_LOADER_STATUS_CODE, -1); in getDataLoaderStatusCode()
79 return mData.getInt(IIncrementalService.METRICS_TOTAL_DELAYED_READS, -1); in getTotalDelayedReads()
86 return mData.getInt(IIncrementalService.METRICS_TOTAL_FAILED_READS, -1); in getTotalFailedReads()
100 return mData.getInt(IIncrementalService.METRICS_LAST_READ_ERROR_UID, -1); in getLastReadErrorUid()
114 return mData.getInt(IIncrementalService.METRICS_LAST_READ_ERROR_NUMBER, -1); in getLastReadErrorNumber()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DNitzStateMachine.java158 SystemProperties.getInt("ro.nitz_update_spacing", in DeviceStateImpl()
161 SystemProperties.getInt("ro.nitz_update_diff", NITZ_UPDATE_DIFF_MILLIS_DEFAULT); in DeviceStateImpl()
163 SystemProperties.getInt("ro.nitz_network_disconnect_retention", in DeviceStateImpl()
169 return Settings.Global.getInt(mCr, Settings.Global.NITZ_UPDATE_SPACING, in getNitzUpdateSpacingMillis()
175 return Settings.Global.getInt(mCr, Settings.Global.NITZ_UPDATE_DIFF, in getNitzUpdateDiffMillis()
181 return Settings.Global.getInt(mCr, Settings.Global.NITZ_NETWORK_DISCONNECT_RETENTION, in getNitzNetworkDisconnectRetentionMillis()
DGlobalSettingsHelper.java34 public static int getInt(Context context, String settingName, int subId, in getInt() method in GlobalSettingsHelper
37 return Settings.Global.getInt(context.getContentResolver(), settingName, defaultValue); in getInt()
46 return Settings.Global.getInt(context.getContentResolver(), settingName, in getBoolean()
56 return Settings.Global.getInt(context.getContentResolver(), settingName) == 1; in getBoolean()
68 needChange = Settings.Global.getInt(context.getContentResolver(), settingName) != value; in setInt()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/fuelgauge/
DBatterySaverUtils.java109 startNth = parser.getInt("start_nth", AUTO_SAVER_SUGGESTION_START_NTH); in Parameters()
110 endNth = parser.getInt("end_nth", AUTO_SAVER_SUGGESTION_END_NTH); in Parameters()
142 Secure.getInt(cr, Secure.LOW_POWER_MANUAL_ACTIVATION_COUNT, 0) + 1; in setPowerSaveMode()
149 && Global.getInt(cr, Global.LOW_POWER_MODE_TRIGGER_LEVEL, 0) == 0 in setPowerSaveMode()
150 && Secure.getInt(cr, in setPowerSaveMode()
176 if (Secure.getInt(context.getContentResolver(), in maybeShowBatterySaverConfirmation()
178 && Secure.getInt(context.getContentResolver(), in maybeShowBatterySaverConfirmation()
233 if (Global.getInt(context.getContentResolver(), Global.LOW_POWER_MODE_TRIGGER_LEVEL, 0) in ensureAutoBatterySaver()
246 final int currentMode = Global.getInt(resolver, Global.AUTOMATIC_POWER_SAVE_MODE, in revertScheduleToNoneIfNeeded()
263 final int mode = Settings.Global.getInt(resolver, Global.AUTOMATIC_POWER_SAVE_MODE, in getBatterySaverScheduleKey()
[all …]
/frameworks/base/core/java/android/database/sqlite/
DSQLiteGlobal.java80 return SystemProperties.getInt("debug.sqlite.pagesize", sDefaultPageSize); in getDefaultPageSize()
97 return SystemProperties.getInt("debug.sqlite.journalsizelimit", in getJournalSizeLimit()
134 int value = SystemProperties.getInt("debug.sqlite.wal.autocheckpoint", in getWALAutoCheckpoint()
144 int value = SystemProperties.getInt("debug.sqlite.wal.poolsize", in getWALConnectionPoolSize()
155 return SystemProperties.getInt("debug.sqlite.idle_connection_timeout", in getIdleConnectionTimeout()
172 return SystemProperties.getInt("debug.sqlite.wal.truncatesize", in getWALTruncateSize()
/frameworks/base/core/java/android/ddm/
DDdmHandleProfiling.java107 int bufferSize = in.getInt(); in handleMPRS()
108 int flags = in.getInt(); in handleMPRS()
109 int len = in.getInt(); in handleMPRS()
149 int bufferSize = in.getInt(); in handleMPSS()
150 int flags = in.getInt(); in handleMPSS()
202 int bufferSize = in.getInt(); in handleSPSS()
203 int flags = in.getInt(); in handleSPSS()
204 int interval = in.getInt(); in handleSPSS()
/frameworks/base/telephony/java/android/telephony/ims/
DSipDelegateImsConfiguration.java459 public @IntConfigKey int getInt(@NonNull String key, int defaultValue) { in getInt() method in SipDelegateImsConfiguration
463 return mBundle.getInt(key); in getInt()
541 getInt(KEY_SIP_CONFIG_UE_DEFAULT_PORT_INT, -1)), in toNewConfig()
543 getInt(KEY_SIP_CONFIG_SERVER_DEFAULT_PORT_INT, -1))); in toNewConfig()
548 builder.setMaxUdpPayloadSizeBytes(getInt(KEY_SIP_CONFIG_MAX_PAYLOAD_SIZE_ON_UDP_INT, -1)); in toNewConfig()
574 getInt(KEY_SIP_CONFIG_UE_IPSEC_CLIENT_PORT_INT, -1), in toNewConfig()
575 getInt(KEY_SIP_CONFIG_UE_IPSEC_SERVER_PORT_INT, -1), in toNewConfig()
576 getInt(KEY_SIP_CONFIG_UE_IPSEC_OLD_CLIENT_PORT_INT, -1), in toNewConfig()
577 getInt(KEY_SIP_CONFIG_SERVER_IPSEC_CLIENT_PORT_INT, -1), in toNewConfig()
578 getInt(KEY_SIP_CONFIG_SERVER_IPSEC_SERVER_PORT_INT, -1), in toNewConfig()
[all …]
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
DMarshalQueryableHighSpeedVideoConfiguration.java57 int width = buffer.getInt(); in unmarshal()
58 int height = buffer.getInt(); in unmarshal()
59 int fpsMin = buffer.getInt(); in unmarshal()
60 int fpsMax = buffer.getInt(); in unmarshal()
61 int batchSizeMax = buffer.getInt(); in unmarshal()
DMarshalQueryableRecommendedStreamConfiguration.java56 int width = buffer.getInt(); in unmarshal()
57 int height = buffer.getInt(); in unmarshal()
58 int format = buffer.getInt(); in unmarshal()
59 boolean input = buffer.getInt() != 0; in unmarshal()
60 int usecaseBitmap = buffer.getInt(); in unmarshal()
DMarshalQueryableMeteringRectangle.java58 int xMin = buffer.getInt(); in unmarshal()
59 int yMin = buffer.getInt(); in unmarshal()
60 int xMax = buffer.getInt(); in unmarshal()
61 int yMax = buffer.getInt(); in unmarshal()
62 int weight = buffer.getInt(); in unmarshal()
/frameworks/base/telephony/java/android/telephony/
DSmsCbMessage.java631 int geoScope = cursor.getInt( in createFromCursor()
633 int serialNum = cursor.getInt(cursor.getColumnIndexOrThrow(CellBroadcasts.SERIAL_NUMBER)); in createFromCursor()
634 int category = cursor.getInt(cursor.getColumnIndexOrThrow(CellBroadcasts.SERVICE_CATEGORY)); in createFromCursor()
638 int format = cursor.getInt(cursor.getColumnIndexOrThrow(CellBroadcasts.MESSAGE_FORMAT)); in createFromCursor()
639 int priority = cursor.getInt(cursor.getColumnIndexOrThrow(CellBroadcasts.MESSAGE_PRIORITY)); in createFromCursor()
640 int slotIndex = cursor.getInt(cursor.getColumnIndexOrThrow(CellBroadcasts.SLOT_INDEX)); in createFromCursor()
641 int subId = cursor.getInt(cursor.getColumnIndexOrThrow(CellBroadcasts.SUBSCRIPTION_ID)); in createFromCursor()
654 lac = cursor.getInt(lacColumn); in createFromCursor()
662 cid = cursor.getInt(cidColumn); in createFromCursor()
674 int warningType = cursor.getInt(etwsWarningTypeColumn); in createFromCursor()
[all …]
/frameworks/base/services/core/java/com/android/server/utils/
DUserSettingDeviceConfigMediator.java82 public abstract int getInt(@NonNull String key, int defaultValue); in getInt() method in UserSettingDeviceConfigMediator
128 public int getInt(@NonNull String key, int defaultValue) { in getInt() method in UserSettingDeviceConfigMediator.SettingsOverridesAllMediator
130 return mProperties == null ? defaultValue : mProperties.getInt(key, defaultValue); in getInt()
132 return mSettingsParser.getInt(key, defaultValue); in getInt()
177 public int getInt(@NonNull String key, int defaultValue) { in getInt() method in UserSettingDeviceConfigMediator.SettingsOverridesIndividualMediator
178 return mSettingsParser.getInt(key, in getInt()
179 mProperties == null ? defaultValue : mProperties.getInt(key, defaultValue)); in getInt()
/frameworks/multidex/library/test/src/androidx/multidex/
DZipEntryReader.java52 int sig = in.getInt(); in readEntry()
69 long crc = ((long) in.getInt()) & 0xffffffffL; in readEntry()
70 long compressedSize = ((long) in.getInt()) & 0xffffffffL; in readEntry()
71 long size = ((long) in.getInt()) & 0xffffffffL; in readEntry()
79 long localHeaderRelOffset = ((long) in.getInt()) & 0xffffffffL; in readEntry()

12345678910>>...47