Searched refs:nBytes (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | SettingsBackupAgent.java | 430 int nBytes = in.readInt(); in onRestoreFile() local 431 if (DEBUG_BACKUP) Log.d(TAG, nBytes + " bytes of settings data"); in onRestoreFile() 432 byte[] buffer = new byte[nBytes]; in onRestoreFile() 433 in.readFully(buffer, 0, nBytes); in onRestoreFile() 434 restoreSettings(buffer, nBytes, Settings.System.CONTENT_URI, movedToGlobal, in onRestoreFile() 439 nBytes = in.readInt(); in onRestoreFile() 440 if (DEBUG_BACKUP) Log.d(TAG, nBytes + " bytes of secure settings data"); in onRestoreFile() 441 if (nBytes > buffer.length) buffer = new byte[nBytes]; in onRestoreFile() 442 in.readFully(buffer, 0, nBytes); in onRestoreFile() 445 nBytes, in onRestoreFile() [all …]
|
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
D | pvmp3_framedecoder.cpp | 597 for (int32 nBytes = temp >> 1; nBytes != 0; nBytes--) /* read main data. */ in fillMainDataBuf() local 616 for (int32 nBytes = temp >> 1; nBytes != 0; nBytes--) /* read main data. */ in fillMainDataBuf() local
|