HomeSort by relevance Sort by last modified time
    Searched refs:sWorkerThread (Results 1 - 3 of 3) sorted by null

  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetProvider.java 70 private static HandlerThread sWorkerThread;
80 sWorkerThread = new HandlerThread("WeatherWidgetProvider-worker");
81 sWorkerThread.start();
82 sWorkerQueue = new Handler(sWorkerThread.getLooper());
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java 93 private static final HandlerThread sWorkerThread = new HandlerThread("launcher-loader");
95 sWorkerThread.start();
97 private static final Handler sWorker = new Handler(sWorkerThread.getLooper());
193 if (sWorkerThread.getThreadId() == Process.myTid()) {
204 if (sWorkerThread.getThreadId() == Process.myTid()) {
217 if (sWorkerThread.getThreadId() == Process.myTid()) {
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherModel.java 92 private static final HandlerThread sWorkerThread = new HandlerThread("launcher-loader");
94 sWorkerThread.start();
96 private static final Handler sWorker = new Handler(sWorkerThread.getLooper());
203 if (sWorkerThread.getThreadId() == Process.myTid()) {
214 if (sWorkerThread.getThreadId() == Process.myTid()) {
259 if (sWorkerThread.getThreadId() != Process.myTid()) {
407 if (sWorkerThread.getThreadId() == Process.myTid()) {
    [all...]

Completed in 38 milliseconds