OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:startservice
(Results
1 - 25
of
222
) sorted by null
1
2
3
4
5
6
7
8
9
/external/dnsmasq/contrib/dnsmasq_MacOSX/
DNSmasq
4
StartService
() {
19
StartService
"$@"
/packages/apps/KeyChain/src/com/android/keychain/
KeyChainBroadcastReceiver.java
12
context.
startService
(intent);
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicIntentReceiver.java
39
context.
startService
(new Intent(MusicService.ACTION_PAUSE));
49
context.
startService
(new Intent(MusicService.ACTION_TOGGLE_PLAYBACK));
52
context.
startService
(new Intent(MusicService.ACTION_PLAY));
55
context.
startService
(new Intent(MusicService.ACTION_PAUSE));
58
context.
startService
(new Intent(MusicService.ACTION_STOP));
61
context.
startService
(new Intent(MusicService.ACTION_SKIP));
66
context.
startService
(new Intent(MusicService.ACTION_REWIND));
MainActivity.java
78
startService
(new Intent(MusicService.ACTION_PLAY));
80
startService
(new Intent(MusicService.ACTION_PAUSE));
82
startService
(new Intent(MusicService.ACTION_SKIP));
84
startService
(new Intent(MusicService.ACTION_REWIND));
86
startService
(new Intent(MusicService.ACTION_STOP));
113
startService
(i);
128
startService
(new Intent(MusicService.ACTION_TOGGLE_PLAYBACK));
/frameworks/base/docs/html/training/run-background-service/
send-request.jd
40
{@link android.content.Context#
startService
startService
()}.
61
Call {@link android.content.Context#
startService
startService
()}
65
getActivity().
startService
(mServiceIntent);
74
Once you call {@link android.content.Context#
startService
startService
()},
/external/chromium/chrome/browser/chromeos/cros/
libcros_service_library.h
20
virtual void
StartService
() = 0;
/development/samples/training/notify-user/src/com/example/android/pingme/
ResultActivity.java
41
startService
(intent);
47
startService
(intent);
/external/libpcap/ChmodBPF/
ChmodBPF
5
StartService
()
31
RestartService () {
StartService
; }
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapReceiver.java
58
boolean
startService
= true;
67
startService
= false;
73
startService
= false;
76
if (
startService
) {
78
context.
startService
(in);
/frameworks/base/test-runner/src/android/test/
ServiceTestCase.java
58
* test methods calls {@link #
startService
} or {@link #bindService}. This gives you an
63
* When one of your test methods calls {@link #
startService
ServiceTestCase.
startService
()}
66
* {@link android.app.Service#
startService
(Intent) Service.
startService
(Intent)} or
92
*
startService
() or bindService(). The test framework provides a
124
* a test calls {@link #
startService
} or {@link #bindService}.
148
* (Context, Application) to it. This is called automatically by {@link #
startService
} or
180
* {@link android.content.Context#
startService
(Intent) Context.
startService
(Intent)} wit
[
all
...]
/frameworks/support/v4/java/android/support/v4/content/
WakefulBroadcastReceiver.java
42
* {@link android.content.Context#
startService
startService
()}, except that
67
* Do a {@link android.content.Context#
startService
(android.content.Intent)
68
* Context.
startService
}, but holding a wake lock while the service starts.
77
* {@link android.content.Context#
startService
(android.content.Intent)
78
* Context.
startService
}.
89
ComponentName comp = context.
startService
(intent);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/matchers/
StartedServiceMatcherTest.java
54
service.
startService
(actualIntent);
58
service.
startService
(actualIntent);
62
service.
startService
(actualIntent);
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
ThreadingTest.java
49
* Test for race conditions when the service is flooded with
startService
() calls while running
56
startService
(null);
77
startService
(null);
/packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogReceiver.java
41
context.
startService
(serviceIntent);
45
context.
startService
(serviceIntent);
/packages/apps/Stk/src/com/android/stk/
StkCmdReceiver.java
48
context.
startService
(new Intent(context, StkAppService.class)
55
context.
startService
(new Intent(context, StkAppService.class)
/packages/apps/Email/src/com/android/email/service/
EmailServiceUtils.java
40
public static void
startService
(Context context, String intentAction) {
41
context.
startService
(new Intent(intentAction));
64
startService
(context, EmailServiceProxy.EXCHANGE_INTENT);
/packages/apps/Music/src/com/android/music/
MediaButtonIntentReceiver.java
65
context.
startService
(i);
128
context.
startService
(i);
132
context.
startService
(i);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java
71
startService
(context);
77
startService
(context);
83
startService
(context);
86
startService
(context);
239
private void
startService
(Context context) {
240
context.
startService
(new Intent(context, DownloadService.class));
/cts/tests/tests/app/src/android/app/cts/
IntentServiceTest.java
58
mContext.
startService
(addIntent);
86
mContext.
startService
(mIntent);
ServiceTest.java
137
mContext.
startService
(new Intent(service).putExtras(bundle));
140
mContext.
startService
(new Intent(service).putExtras(bundle));
155
mContext.
startService
(service);
165
* In this mode, it's started by calling Context.
startService
()
169
* no matter how many times
startService
() was called.
186
mContext.
startService
(service);
217
mContext.
startService
(service);
243
mContext.
startService
(service);
/development/samples/Alarm/tests/src/com/example/android/newalarm/
AlarmServiceTest.java
67
* Tests the service's onCreate() method. Starts the service using
startService
(Intent)
71
this.
startService
(mStartServiceIntent);
/packages/apps/Exchange/exchange2/src/com/android/exchange/service/
ExchangeBroadcastProcessorService.java
57
context.
startService
(i);
83
startService
(new Intent(this, ExchangeService.class));
/packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerReceiver.java
61
context.
startService
(
68
context.
startService
(
/frameworks/base/docs/html/guide/components/
services.jd
73
calling {@link android.content.Context#
startService
startService
()}. Once started, a service
140
requests that the service be started, by calling {@link android.content.Context#
startService
141
startService
()}. Once this method executes, the service is started and can run in the
164
android.content.Context#
startService
startService
()} (which results in a call to {@link
234
android.content.Context#
startService
startService
()}.</p>
256
android.content.Context#
startService
startService
()}, resulting in a call to the service'
[
all
...]
/cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
GrantUriPermission.java
34
context.
startService
(newIntent);
Completed in 1238 milliseconds
1
2
3
4
5
6
7
8
9