Home
last modified time | relevance | path

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

/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DNetworkLoggingHandler.java105 private final LongSparseArray<ArrayList<NetworkEvent>> mBatches = field in NetworkLoggingHandler
205 if (mBatches.size() > 0 && mLastRetrievedBatchToken != mCurrentBatchToken) { in resume()
216 mBatches.clear(); in discardLogs()
238 if (mBatches.size() >= MAX_BATCHES) { in finalizeBatchAndBuildDeviceOwnerMessageLocked()
240 mBatches.removeAt(0); in finalizeBatchAndBuildDeviceOwnerMessageLocked()
243 mBatches.append(mCurrentBatchToken, mNetworkEvents); in finalizeBatchAndBuildDeviceOwnerMessageLocked()
264 final int lastBatchSize = mBatches.valueAt(mBatches.size() - 1).size(); in buildDeviceOwnerMessageLocked()
283 final int index = mBatches.indexOfKey(batchToken); in retrieveFullLogBatch()
295 while (mBatches.size() > 0 && mBatches.keyAt(0) <= batchToken) { in retrieveFullLogBatch()
296 mBatches.removeAt(0); in retrieveFullLogBatch()
[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/libs/input/
DInputTransport.cpp636 Batch& batch = mBatches.editItemAt(batchIndex); in consume()
653 mBatches.removeAt(batchIndex); in consume()
660 mBatches.removeAt(batchIndex); in consume()
676 mBatches.push(); in consume()
677 Batch& batch = mBatches.editTop(); in consume()
713 for (size_t i = mBatches.size(); i > 0; ) { in consumeBatch()
715 Batch& batch = mBatches.editItemAt(i); in consumeBatch()
718 mBatches.removeAt(i); in consumeBatch()
734 mBatches.removeAt(i); in consumeBatch()
1090 return !mBatches.isEmpty(); in hasPendingBatch()
[all …]
/frameworks/native/include/input/
DInputTransport.h396 Vector<Batch> mBatches; variable