Searched refs:nBytes (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_server_Watchdog.cpp42 int nBytes; local
43 while ((nBytes = read(stackFd, buf, sizeof(buf))) > 0) {
44 write(outFd, buf, nBytes);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java584 int nBytes = in.readInt();
585 if (DEBUG_BACKUP) Log.d(TAG, nBytes + " bytes of settings data");
586 byte[] buffer = new byte[nBytes];
587 in.readFully(buffer, 0, nBytes);
588 restoreSettings(buffer, nBytes, Settings.System.CONTENT_URI, movedToGlobal);
591 nBytes = in.readInt();
592 if (DEBUG_BACKUP) Log.d(TAG, nBytes + " bytes of secure settings data");
593 if (nBytes > buffer.length) buffer = new byte[nBytes];
594 in.readFully(buffer, 0, nBytes);
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_framedecoder.cpp593 for (int32 nBytes = temp >> 1; nBytes != 0; nBytes--) /* read main data. */
612 for (int32 nBytes = temp >> 1; nBytes != 0; nBytes--) /* read main data. */

Completed in 952 milliseconds