HomeSort by relevance Sort by last modified time
    Searched defs:batchSize (Results 1 - 4 of 4) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppReceiver.java 104 int batchSize = mOppManager.getBatchSize();
106 toastMsg = context.getString(R.string.bt_toast_5, Integer.toString(batchSize),
  /frameworks/base/core/java/android/webkit/
WebViewDatabase.java 867 int batchSize = 100;
868 StringBuilder pathStr = new StringBuilder(20 + 16 * batchSize);
870 for (int i = 1; i < batchSize; i++) {
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java     [all...]
  /frameworks/base/services/input/
InputReader.cpp 308 size_t batchSize = 1;
311 while (batchSize < count) {
312 if (rawEvent[batchSize].type >= EventHubInterface::FIRST_SYNTHETIC_EVENT
313 || rawEvent[batchSize].deviceId != deviceId) {
316 batchSize += 1;
319 LOGD("BatchSize: %d Count: %d", batchSize, count);
321 processEventsForDeviceLocked(deviceId, rawEvent, batchSize);
338 count -= batchSize;
339 rawEvent += batchSize;
    [all...]

Completed in 5532 milliseconds