OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sWorkerThread
(Results
1 - 4
of
4
) sorted by null
/developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherWidgetProvider.java
70
private static HandlerThread
sWorkerThread
;
80
sWorkerThread
= new HandlerThread("WeatherWidgetProvider-worker");
81
sWorkerThread
.start();
82
sWorkerQueue = new Handler(
sWorkerThread
.getLooper());
/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
96
private static final HandlerThread
sWorkerThread
= new HandlerThread("launcher-loader");
98
sWorkerThread
.start();
100
private static final Handler sWorker = new Handler(
sWorkerThread
.getLooper());
204
if (
sWorkerThread
.getThreadId() == Process.myTid()) {
215
if (
sWorkerThread
.getThreadId() == Process.myTid()) {
228
if (
sWorkerThread
.getThreadId() == Process.myTid()) {
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
LauncherModel.java
111
@Thunk static final HandlerThread
sWorkerThread
= new HandlerThread("launcher-loader");
113
sWorkerThread
.start();
115
@Thunk static final Handler sWorker = new Handler(
sWorkerThread
.getLooper());
248
if (
sWorkerThread
.getThreadId() == Process.myTid()) {
259
if (
sWorkerThread
.getThreadId() == Process.myTid()) {
580
if (
sWorkerThread
.getThreadId() == Process.myTid()) {
[
all
...]
Completed in 221 milliseconds