Searched refs:bufferSize (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
D | BytesBufferPool.java | 68 public BytesBufferPool(int poolSize, int bufferSize) { in BytesBufferPool() argument 71 mBufferSize = bufferSize; in BytesBufferPool()
|
/packages/apps/Email/src/com/android/email/mail/transport/ |
D | DiscourseLogger.java | 37 public DiscourseLogger(int bufferSize) { in DiscourseLogger() argument 38 mBufferSize = bufferSize; in DiscourseLogger()
|
/packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/ |
D | VideoChatTestActivity.java | 273 private void setupCallback(Camera camera, FrameCatcher catcher, int bufferSize) { in setupCallback() argument 277 byte [] cameraBuffer = new byte[bufferSize]; in setupCallback() 370 int bufferSize; in TestCamera() local 371 bufferSize = setSize.width * setSize.height in TestCamera() 374 if (bufferSize != sizeWeShouldHave) { in TestCamera() 419 setupCallback(camera, catcher, bufferSize); in TestCamera()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/hid/ |
D | HidService.java | 237 int bufferSize = data.getInt(BluetoothInputDevice.EXTRA_REPORT_BUFFER_SIZE); 238 … if(!getReportNative(Utils.getByteAddress(device), reportType, reportId, bufferSize)) { 361 … public boolean getReport(BluetoothDevice device, byte reportType, byte reportId, int bufferSize) { in getReport() argument 364 return service.getReport(device, reportType, reportId, bufferSize) ; in getReport() 487 boolean getReport(BluetoothDevice device, byte reportType, byte reportId, int bufferSize) { in getReport() argument 499 data.putInt(BluetoothInputDevice.EXTRA_REPORT_BUFFER_SIZE, bufferSize); in getReport() 647 …te native boolean getReportNative(byte[]btAddress, byte reportType, byte reportId, int bufferSize); in getReportNative() argument
|
/packages/apps/Bluetooth/src/com/android/bluetooth/ |
D | Utils.java | 151 …public static void copyStream(InputStream is, OutputStream os, int bufferSize) throws IOException { in copyStream() argument 153 byte[] buffer = new byte[bufferSize]; in copyStream()
|
/packages/apps/Bluetooth/jni/ |
D | com_android_bluetooth_hid.cpp | 366 …IEnv *env, jobject object, jbyteArray address, jbyte reportType, jbyte reportId, jint bufferSize) { in getReportNative() argument 367 … reportType = %d, reportId = %d, bufferSize = %d", __FUNCTION__, reportType, reportId, bufferSize); in getReportNative() 383 …erface->get_report((bt_bdaddr_t *) addr, (bthh_report_type_t) rType, (uint8_t) rId, bufferSize)) != in getReportNative()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
D | BinaryDictInputOutput.java | 1159 final int bufferSize = lastNode.mCachedAddress + lastNode.mCachedSize; in writeDictionaryBinary() local 1160 final byte[] buffer = new byte[bufferSize]; in writeDictionaryBinary()
|