OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IntentService
(Results
1 - 25
of
34
) sorted by null
1
2
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/notifier/
NotifierService.java
18
import android.app.
IntentService
;
26
public class NotifierService extends
IntentService
{
/packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogNotificationsService.java
19
import android.app.
IntentService
;
36
public class CallLogNotificationsService extends
IntentService
{
/packages/apps/Phone/src/com/android/phone/
ClearMissedCallsService.java
19
import android.app.
IntentService
;
27
public class ClearMissedCallsService extends
IntentService
{
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProviderIntentService.java
18
import android.app.
IntentService
;
22
public class CalendarProviderIntentService extends
IntentService
{
/cts/tests/src/android/app/cts/
IntentServiceStub.java
19
import android.app.
IntentService
;
25
public class IntentServiceStub extends
IntentService
{
107
synchronized (
IntentService
.class) {
/frameworks/base/core/java/android/app/
IntentService.java
27
*
IntentService
is a base class for {@link Service}s that handle asynchronous
34
* from an application's main thread. The
IntentService
class exists to
36
*
IntentService
and implement {@link #onHandleIntent(Intent)}.
IntentService
52
public abstract class
IntentService
extends Service {
71
* Creates an
IntentService
. Invoked by your subclass's constructor.
75
public
IntentService
(String name) {
107
HandlerThread thread = new HandlerThread("
IntentService
[" + mName + "]");
123
* You should not override this method for your
IntentService
. Instead,
124
* override {@link #onHandleIntent}, which the system calls when the
IntentService
[
all
...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/service/
ExchangeBroadcastProcessorService.java
20
import android.app.
IntentService
;
39
public class ExchangeBroadcastProcessorService extends
IntentService
{
/packages/apps/Gallery2/src/com/android/gallery3d/app/
PackagesMonitor.java
19
import android.app.
IntentService
;
43
public static class AsyncService extends
IntentService
{
/packages/apps/Mms/src/com/android/mms/ui/
NoConfirmationSendService.java
19
import android.app.
IntentService
;
32
public class NoConfirmationSendService extends
IntentService
{
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailCleanupService.java
19
import android.app.
IntentService
;
31
public class VoicemailCleanupService extends
IntentService
{
/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
FileTransferService.java
5
import android.app.
IntentService
;
23
public class FileTransferService extends
IntentService
{
41
* @see android.app.
IntentService
#onHandleIntent(android.content.Intent)
/packages/apps/Calendar/src/com/android/calendar/alerts/
SnoozeAlarmsService.java
19
import android.app.
IntentService
;
33
public class SnoozeAlarmsService extends
IntentService
{
DismissAlarmsService.java
19
import android.app.
IntentService
;
35
public class DismissAlarmsService extends
IntentService
{
/packages/apps/Contacts/tests/src/com/android/contacts/tests/
PhoneNumberTestService.java
19
import android.app.
IntentService
;
47
public class PhoneNumberTestService extends
IntentService
{
QueryService.java
19
import android.app.
IntentService
;
41
public class QueryService extends
IntentService
{
/packages/apps/Mms/src/com/android/mms/transaction/
MessageStatusService.java
19
import android.app.
IntentService
;
38
public class MessageStatusService extends
IntentService
{
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
BandwidthEnforcementTestService.java
18
import android.app.
IntentService
;
43
public class BandwidthEnforcementTestService extends
IntentService
{
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastConfigService.java
19
import android.app.
IntentService
;
45
public class CellBroadcastConfigService extends
IntentService
{
/packages/apps/Email/src/com/android/email/service/
EmailBroadcastProcessorService.java
20
import android.app.
IntentService
;
55
public class EmailBroadcastProcessorService extends
IntentService
{
/packages/apps/MusicFX/src/com/android/musicfx/
Compatibility.java
20
import android.app.
IntentService
;
108
public static class Service extends
IntentService
{
133
log("
intentservice
saw: " + packageIntent + " " + b);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
UploaderService.java
21
import android.app.
IntentService
;
46
public final class UploaderService extends
IntentService
{
/packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java
21
import android.app.
IntentService
;
43
public class AsyncQueryServiceHelper extends
IntentService
{
/packages/apps/KeyChain/src/com/android/keychain/
KeyChainService.java
19
import android.app.
IntentService
;
44
public class KeyChainService extends
IntentService
{
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java
23
import android.app.
IntentService
;
81
public class DefaultContainerService extends
IntentService
{
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java
20
import android.app.
IntentService
;
70
public class ContactSaveService extends
IntentService
{
[
all
...]
Completed in 3085 milliseconds
1
2