Home | History | Annotate | Download | only in adapter

Lines Matching defs:mini

1277      * Apply the list of CPO's in the provider and copy the "mini" result into our full result array
1280 final String authority, final ArrayList<Operation> mini,
1283 if (mini.isEmpty()) return;
1285 ContentProviderResult[] miniResult = applyBatch(contentResolver, authority, mini,
1287 // Copy the results from this mini-batch into our results array
1298 * "mini" batches fails due to a too-large transaction, we're screwed, but this would be
1316 ArrayList<Operation> mini = new ArrayList<Operation>();
1323 //mService.userLog("Try mini-batch of ", mini.size(), " CPO's");
1324 applyAndCopyResults(contentResolver, authority, mini, result, offset);
1325 mini.clear();
1330 mini.add(op);
1335 int miniSize = mini.size();
1336 if ((miniSize > 0) && !(miniSize == 1 && mini.get(0).mSeparator)) {
1337 applyAndCopyResults(contentResolver, authority, mini, result, offset);