Searched refs:bytes (Results 76 - 83 of 83) sorted by relevance

1234

/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherBackupHelper.java177 out.bytes = 0;
193 Log.v(TAG, "onBackup: wrote " + out.bytes + "b in " + out.rows + " rows.");
325 Log.v(TAG, "unpacking favorite " + key.id + " (" + dataSize + " bytes)");
873 if (DEBUG) Log.d(TAG, "read some bytes: " + result);
887 if (DEBUG) Log.d(TAG, "journal bytes read: " + bytesRead);
916 out.bytes += blob.length;
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifInterface.java1102 ByteArrayOutputStream bytes = null;
1105 bytes = new ByteArrayOutputStream();
1106 doExifStreamIO(is, bytes);
1107 byte[] imageBytes = bytes.toByteArray();
1766 * The bytes may either be an uncompressed strip as specified in the exif
2074 * We put tag information in a 4-bytes integer. The first byte a bitmask
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifInterface.java1102 ByteArrayOutputStream bytes = null;
1105 bytes = new ByteArrayOutputStream();
1106 doExifStreamIO(is, bytes);
1107 byte[] imageBytes = bytes.toByteArray();
1766 * The bytes may either be an uncompressed strip as specified in the exif
2074 * We put tag information in a 4-bytes integer. The first byte a bitmask
/packages/apps/Launcher3/src/com/android/gallery3d/exif/
H A DExifInterface.java1102 ByteArrayOutputStream bytes = null;
1105 bytes = new ByteArrayOutputStream();
1106 doExifStreamIO(is, bytes);
1107 byte[] imageBytes = bytes.toByteArray();
1766 * The bytes may either be an uncompressed strip as specified in the exif
2074 * We put tag information in a 4-bytes integer. The first byte a bitmask
/packages/apps/Mms/src/com/android/mms/exif/
H A DExifInterface.java1102 ByteArrayOutputStream bytes = null;
1105 bytes = new ByteArrayOutputStream();
1106 doExifStreamIO(is, bytes);
1107 byte[] imageBytes = bytes.toByteArray();
1766 * The bytes may either be an uncompressed strip as specified in the exif
2074 * We put tag information in a 4-bytes integer. The first byte a bitmask
/packages/apps/Exchange/src/com/android/exchange/service/
H A DEasContactsSyncHandler.java669 final byte[] bytes = cv.getAsByteArray(Photo.PHOTO);
670 final String pic = Base64.encodeToString(bytes, Base64.NO_WRAP);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DLegacyApiSupport.java1184 byte[] bytes = values.getAsByteArray(android.provider.Contacts.Photos.DATA);
1185 mValues.put(Photo.PHOTO, bytes);
1216 byte[] bytes = values.getAsByteArray(android.provider.Contacts.Photos.DATA);
1218 mValues.put(Photo.PHOTO, bytes);
/packages/apps/Exchange/src/com/android/exchange/
H A DEasSyncService.java1274 public EasResponse sendHttpClientPost(String cmd, byte[] bytes) throws IOException { argument
1275 return sendHttpClientPost(cmd, new ByteArrayEntity(bytes), COMMAND_TIMEOUT);

Completed in 169 milliseconds

1234