Home
last modified time | relevance | path

Searched refs:mBatches (Results 1 – 6 of 6) 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/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coalescer/
DGroupCoalescer.java75 private final Map<String, EventBatch> mBatches = new ArrayMap<>(); field in GroupCoalescer
165 final EventBatch batch = mBatches.get(sbn.getGroupKey()); in maybeEmitBatch()
210 EventBatch batch = mBatches.get(groupKey); in getOrBuildBatch()
213 mBatches.put(groupKey, batch); in getOrBuildBatch()
232 if (batch != mBatches.get(batch.mGroupKey)) { in emitBatch()
243 mBatches.remove(batch.mGroupKey); in emitBatch()
287 for (EventBatch batch : mBatches.values()) { in dump()
/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.cpp665 Batch& batch = mBatches.editItemAt(batchIndex); in consume()
682 mBatches.removeAt(batchIndex); in consume()
689 mBatches.removeAt(batchIndex); in consume()
705 mBatches.push(); in consume()
706 Batch& batch = mBatches.editTop(); in consume()
753 for (size_t i = mBatches.size(); i > 0; ) { in consumeBatch()
755 Batch& batch = mBatches.editItemAt(i); in consumeBatch()
758 mBatches.removeAt(i); in consumeBatch()
774 mBatches.removeAt(i); in consumeBatch()
1130 return !mBatches.isEmpty(); in hasPendingBatch()
[all …]
/frameworks/native/include/input/
DInputTransport.h432 Vector<Batch> mBatches; variable