Searched defs:BUFFER_SIZE (Results 1 - 11 of 11) sorted by relevance

/packages/experimental/BugReportSender/src/com/android/bugreportsender/
H A DBugReportParser.java14 private static final int BUFFER_SIZE = 8*1024; field in class:BugReportParser
25 BufferedReader reader = new BufferedReader(new InputStreamReader(in, "UTF-8"), BUFFER_SIZE);
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DDumpDatabaseAction.java38 private static final int BUFFER_SIZE = 16384; field in class:DumpDatabaseAction
70 final byte[] buffer = new byte[BUFFER_SIZE];
/packages/apps/Browser/src/com/android/browser/
H A DWallpaperHandler.java47 private static final int BUFFER_SIZE = 128 * 1024; field in class:WallpaperHandler
98 inputstream = new BufferedInputStream(inputstream, BUFFER_SIZE);
100 inputstream.mark(BUFFER_SIZE);
H A DCrashRecoveryHandler.java40 private static final int BUFFER_SIZE = 4096; field in class:CrashRecoveryHandler
164 byte[] buffer = new byte[BUFFER_SIZE];
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DSerializer.java45 private static final int BUFFER_SIZE = 16*1024; field in class:Serializer
200 final byte[] buffer = new byte[BUFFER_SIZE];
203 final int bytesRead = is.read(buffer, 0, Math.min(BUFFER_SIZE, length));
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DJavaNetHttpHelper.java38 private static final int BUFFER_SIZE = 1024 * 4; field in class:JavaNetHttpHelper
161 char[] chars = new char[BUFFER_SIZE];
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DConstants.java120 public static final int BUFFER_SIZE = 8192; field in class:Constants
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DEmlAttachmentProvider.java76 private static final int BUFFER_SIZE = 4096; field in class:EmlAttachmentProvider
333 final byte data[] = new byte[BUFFER_SIZE];
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DPhotoSource.java48 private static final int BUFFER_SIZE = 32 * 1024; field in class:PhotoSource
166 bis.mark(BUFFER_SIZE);
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DContactPhotoManager.java1282 private static final int BUFFER_SIZE = 1024*16; field in class:ContactPhotoManagerImpl.LoaderThread
1564 mBuffer = new byte[BUFFER_SIZE];
/packages/apps/Camera2/src/com/android/camera/widget/
H A DFilmstripView.java88 private static final int BUFFER_SIZE = 5; field in class:FilmstripView
89 private static final int BUFFER_CENTER = (BUFFER_SIZE - 1) / 2;
128 private final ViewItem[] mViewItems = new ViewItem[BUFFER_SIZE];
801 while (nearest < BUFFER_SIZE
806 if (nearest == BUFFER_SIZE) {
812 for (int i = nearest + 1; i < BUFFER_SIZE && mViewItems[i] != null; i++) {
878 for(int i = 0; i < BUFFER_SIZE; i++) {
922 for (int k = 0; k + adjust < BUFFER_SIZE; k++) {
926 for (int k = BUFFER_SIZE - adjust; k < BUFFER_SIZE;
[all...]

Completed in 603 milliseconds