Home
last modified time | relevance | path

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

/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DNetworkLoggingHandler.java96 private final LongSparseArray<ArrayList<NetworkEvent>> mBatches = field in NetworkLoggingHandler
176 if (mBatches.size() > 0 && mLastRetrievedBatchToken != mCurrentBatchToken) { in resume()
187 mBatches.clear(); in discardLogs()
208 if (mBatches.size() >= MAX_BATCHES) { in finalizeBatchAndBuildDeviceOwnerMessageLocked()
210 mBatches.removeAt(0); in finalizeBatchAndBuildDeviceOwnerMessageLocked()
213 mBatches.append(mCurrentBatchToken, mNetworkEvents); in finalizeBatchAndBuildDeviceOwnerMessageLocked()
234 final int lastBatchSize = mBatches.valueAt(mBatches.size() - 1).size(); in buildDeviceOwnerMessageLocked()
253 final int index = mBatches.indexOfKey(batchToken); in retrieveFullLogBatch()
265 while (mBatches.size() > 0 && mBatches.keyAt(0) <= batchToken) { in retrieveFullLogBatch()
266 mBatches.removeAt(0); in retrieveFullLogBatch()
[all …]
/frameworks/base/libs/hwui/
DLayerBuilder.cpp212 for (int i = mBatches.size() - 1; i >= 0; i--) { in locateInsertIndex()
213 BatchBase* overBatch = mBatches[i]; in locateInsertIndex()
289 size_t insertBatchIndex = mBatches.size(); in deferUnmergeableOp()
301 mBatches.insert(mBatches.begin() + insertBatchIndex, targetBatch); in deferUnmergeableOp()
319 size_t insertBatchIndex = mBatches.size(); in deferMergeableOp()
330 mBatches.insert(mBatches.begin() + insertBatchIndex, targetBatch); in deferMergeableOp()
343 for (const BatchBase* batch : mBatches) { in replayBakedOpsImpl()
362 mBatches.clear(); in clear()
372 for (const BatchBase* batch : mBatches) { in dump()
DLayerBuilder.h100 bool empty() const { return mBatches.empty(); } in empty()
121 std::vector<BatchBase*> mBatches; variable
/frameworks/native/libs/input/
DInputTransport.cpp456 Batch& batch = mBatches.editItemAt(batchIndex); in consume()
470 mBatches.removeAt(batchIndex); in consume()
486 mBatches.push(); in consume()
487 Batch& batch = mBatches.editTop(); in consume()
523 for (size_t i = mBatches.size(); i > 0; ) { in consumeBatch()
525 Batch& batch = mBatches.editItemAt(i); in consumeBatch()
529 mBatches.removeAt(i); in consumeBatch()
545 mBatches.removeAt(i); in consumeBatch()
903 return !mBatches.isEmpty(); in hasPendingBatch()
907 for (size_t i = 0; i < mBatches.size(); i++) { in findBatch()
[all …]
/frameworks/rs/cpu_ref/
DrsCpuScriptGroup2.cpp180 mBatches.push_back(batch); in CpuScriptGroup2Impl()
191 mBatches.push_back(batch); in CpuScriptGroup2Impl()
196 for (Batch* batch : mBatches) { in CpuScriptGroup2Impl()
214 for (Batch* batch : mBatches) { in ~CpuScriptGroup2Impl()
372 for (const Batch* b : mBatches) in compile()
415 for (const auto& batch : mBatches) { in compile()
574 for (auto batch : mBatches) { in execute()
DrsCpuScriptGroup2.h76 List<Batch*> mBatches; variable
/frameworks/native/include/input/
DInputTransport.h363 Vector<Batch> mBatches; variable