Home
last modified time | relevance | path

Searched refs:INTEGER_BYTE_COUNT (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DSettingsBackupAgent.java165 private static final int INTEGER_BYTE_COUNT = Integer.SIZE / Byte.SIZE; field in SettingsBackupAgent
891 pos += INTEGER_BYTE_COUNT; in restoreSettings()
895 pos += INTEGER_BYTE_COUNT; in restoreSettings()
1159 totalSize += INTEGER_BYTE_COUNT + keyBytes.length; in extractRelevantValues()
1163 totalSize += INTEGER_BYTE_COUNT + valueBytes.length; in extractRelevantValues()
1530 byte[] sizeAndString = new byte[stringBytes.length + INTEGER_BYTE_COUNT]; in toByteArray()
1532 writeBytes(sizeAndString, INTEGER_BYTE_COUNT, stringBytes); in toByteArray()
1538 byte[] result = new byte[INTEGER_BYTE_COUNT]; in toByteArray()
1565 return pos + INTEGER_BYTE_COUNT; in writeInt()
1574 return readInt(in, pos.getAndAdd(INTEGER_BYTE_COUNT)); in readInt()
/frameworks/base/media/java/android/media/
DAudioMetadata.java463 private static final int INTEGER_BYTE_COUNT = Integer.SIZE / Byte.SIZE; field in AutoGrowByteBuffer
511 ensureCapacity(INTEGER_BYTE_COUNT); in putInt()