Home
last modified time | relevance | path

Searched refs:mRunnables (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/
DTestShellExecutor.java28 final ArrayList<Runnable> mRunnables = new ArrayList<>(); field in TestShellExecutor
32 mRunnables.add(runnable); in execute()
37 mRunnables.add(r); in executeDelayed()
42 mRunnables.remove(r); in removeCallbacks()
47 return mRunnables.contains(r); in hasCallback()
51 for (Runnable r : mRunnables) { in flushAll()
54 mRunnables.clear(); in flushAll()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/
DSyncTransactionQueue.java49 private final ArrayList<TransactionRunnable> mRunnables = new ArrayList<>(); field in SyncTransactionQueue
108 mRunnables.add(runnable); in runInSync()
120 if (DEBUG) Slog.d(TAG, " Running " + mRunnables.size() + " sync runnables"); in onTransactionReceived()
121 for (int i = 0, n = mRunnables.size(); i < n; ++i) { in onTransactionReceived()
122 mRunnables.get(i).runWithTransaction(t); in onTransactionReceived()
124 mRunnables.clear(); in onTransactionReceived()
/frameworks/native/libs/gui/
DBLASTBufferQueue.cpp715 std::deque<std::function<void()>> mRunnables; member in android::AsyncWorker
721 while (!mRunnables.empty()) { in run()
722 std::function<void()> runnable = mRunnables.front(); in run()
723 mRunnables.pop_front(); in run()
743 mRunnables.emplace_back(std::move(runnable)); in post()
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DBinderCallsStatsTest.java853 for (Runnable runnable : mHandler.mRunnables) { in testCallStatsObserver()
1029 ArrayList<Runnable> mRunnables = new ArrayList<>(); field in BinderCallsStatsTest.TestHandler
1037 mRunnables.add(msg.getCallback()); in sendMessageAtTime()