HomeSort by relevance Sort by last modified time
    Searched refs:mBatches (Results 1 - 7 of 7) sorted by null

  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
NetworkLoggingHandler.java 93 private final LongSparseArray<ArrayList<NetworkEvent>> mBatches =
167 if (mBatches.size() > 0 && mLastRetrievedBatchToken != mCurrentBatchToken) {
178 mBatches.clear();
189 if (mBatches.size() >= MAX_BATCHES) {
191 mBatches.removeAt(0);
194 mBatches.append(mCurrentBatchToken, mNetworkEvents);
215 final int lastBatchSize = mBatches.valueAt(mBatches.size() - 1).size();
234 final int index = mBatches.indexOfKey(batchToken);
246 while (mBatches.size() > 0 && mBatches.keyAt(0) <= batchToken)
    [all...]
  /frameworks/base/libs/hwui/
LayerBuilder.cpp 214 for (int i = mBatches.size() - 1; i >= 0; i--) {
215 BatchBase* overBatch = mBatches[i];
292 size_t insertBatchIndex = mBatches.size();
304 mBatches.insert(mBatches.begin() + insertBatchIndex, targetBatch);
322 size_t insertBatchIndex = mBatches.size();
333 mBatches.insert(mBatches.begin() + insertBatchIndex, targetBatch);
346 for (const BatchBase* batch : mBatches) {
368 mBatches.clear()
    [all...]
LayerBuilder.h 100 return mBatches.empty();
121 std::vector<BatchBase*> mBatches;
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup2.h 76 List<Batch*> mBatches;
rsCpuScriptGroup2.cpp 180 mBatches.push_back(batch);
191 mBatches.push_back(batch);
196 for (Batch* batch : mBatches) {
214 for (Batch* batch : mBatches) {
372 for (const Batch* b : mBatches)
415 for (const auto& batch : mBatches) {
574 for (auto batch : mBatches) {
  /frameworks/native/libs/input/
InputTransport.cpp 452 Batch& batch = mBatches.editItemAt(batchIndex);
466 mBatches.removeAt(batchIndex);
482 mBatches.push();
483 Batch& batch = mBatches.editTop();
518 for (size_t i = mBatches.size(); i > 0; ) {
520 Batch& batch = mBatches.editItemAt(i);
524 mBatches.removeAt(i);
540 mBatches.removeAt(i);
875 return !mBatches.isEmpty();
879 for (size_t i = 0; i < mBatches.size(); i++)
    [all...]
  /frameworks/native/include/input/
InputTransport.h 361 Vector<Batch> mBatches;

Completed in 265 milliseconds