Searched refs:mBatches (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DNetworkLoggingHandler.java93 private final LongSparseArray<ArrayList<NetworkEvent>> mBatches = field in class:NetworkLoggingHandler
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
[all...]
/frameworks/base/libs/hwui/
H A DLayerBuilder.cpp214 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
[all...]
H A DLayerBuilder.h100 return mBatches.empty();
121 std::vector<BatchBase*> mBatches; member in class:android::uirenderer::LayerBuilder
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup2.h76 List<Batch*> mBatches; member in class:android::renderscript::CpuScriptGroup2Impl
H A DrsCpuScriptGroup2.cpp180 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/
H A DInputTransport.cpp452 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
[all...]
/frameworks/native/include/input/
H A DInputTransport.h361 Vector<Batch> mBatches; member in class:android::InputConsumer

Completed in 6742 milliseconds