OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mServiceLooper
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/core/java/android/app/
IntentService.java
53
private volatile Looper
mServiceLooper
;
110
mServiceLooper
= thread.getLooper();
111
mServiceHandler = new ServiceHandler(
mServiceLooper
);
136
mServiceLooper
.quit();
/development/samples/ApiDemos/src/com/example/android/apis/app/
ServiceStartArguments.java
57
private volatile Looper
mServiceLooper
;
121
mServiceLooper
= thread.getLooper();
122
mServiceHandler = new ServiceHandler(
mServiceLooper
);
159
mServiceLooper
.quit();
/packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerService.java
53
private volatile Looper
mServiceLooper
;
161
while (
mServiceLooper
== null) {
169
mServiceLooper
.quit();
180
mServiceLooper
= Looper.myLooper();
/packages/apps/Calendar/src/com/android/calendar/alerts/
AlertService.java
58
private volatile Looper
mServiceLooper
;
453
mServiceLooper
= thread.getLooper();
454
mServiceHandler = new ServiceHandler(
mServiceLooper
);
470
mServiceLooper
.quit();
/packages/apps/Mms/src/com/android/mms/transaction/
SmsReceiverService.java
74
private Looper
mServiceLooper
;
120
mServiceLooper
= thread.getLooper();
121
mServiceHandler = new ServiceHandler(
mServiceLooper
);
169
mServiceLooper
.quit();
TransactionService.java
130
private Looper
mServiceLooper
;
168
mServiceLooper
= thread.getLooper();
169
mServiceHandler = new ServiceHandler(
mServiceLooper
);
[
all
...]
/packages/apps/Settings/src/com/android/settings/bluetooth/
DockService.java
98
private volatile Looper
mServiceLooper
;
143
mServiceLooper
= thread.getLooper();
144
mServiceHandler = new ServiceHandler(
mServiceLooper
);
158
if (
mServiceLooper
!= null) {
159
mServiceLooper
.quit();
165
mServiceLooper
= null;
253
// This method gets messages from both onStartCommand and mServiceHandler/
mServiceLooper
[
all
...]
/packages/apps/Stk/src/com/android/stk/
StkAppService.java
61
private volatile Looper
mServiceLooper
;
199
mServiceLooper
.quit();
210
mServiceLooper
= Looper.myLooper();
Completed in 3353 milliseconds