OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ServiceManager
(Results
101 - 125
of
350
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/base/core/java/android/os/
CommonClock.java
25
import android.os.
ServiceManager
;
113
mRemote =
ServiceManager
.getService(SERVICE_NAME);
CommonTimeConfig.java
24
import android.os.
ServiceManager
;
65
mRemote =
ServiceManager
.getService(SERVICE_NAME);
ServiceManager.java
27
public final class
ServiceManager
{
28
private static final String TAG = "
ServiceManager
";
/frameworks/base/core/java/android/service/voice/
VoiceInteractionService.java
30
import android.os.
ServiceManager
;
225
ServiceManager
.getService(Context.VOICE_INTERACTION_MANAGER_SERVICE));
/frameworks/base/core/java/android/view/textservice/
TextServicesManager.java
25
import android.os.
ServiceManager
;
73
IBinder b =
ServiceManager
.getService(Context.TEXT_SERVICES_MANAGER_SERVICE);
/frameworks/base/core/java/com/android/internal/app/
AssistUtils.java
31
import android.os.
ServiceManager
;
49
ServiceManager
.getService(Context.VOICE_INTERACTION_MANAGER_SERVICE));
/frameworks/base/media/java/android/media/projection/
MediaProjectionManager.java
28
import android.os.
ServiceManager
;
66
IBinder b =
ServiceManager
.getService(Context.MEDIA_PROJECTION_SERVICE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbDebuggingActivity.java
30
import android.os.
ServiceManager
;
123
IBinder b =
ServiceManager
.getService(USB_SERVICE);
UsbResolverActivity.java
30
import android.os.
ServiceManager
;
99
IBinder b =
ServiceManager
.getService(USB_SERVICE);
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
ConfirmDialog.java
26
import android.os.
ServiceManager
;
52
ServiceManager
.getService(Context.CONNECTIVITY_SERVICE));
/frameworks/base/tests/permission/src/com/android/framework/permission/tests/
WindowManagerPermissionTests.java
22
import android.os.
ServiceManager
;
39
ServiceManager
.getService("window"));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
FrameworkFacade.java
33
import android.os.
ServiceManager
;
78
return
ServiceManager
.getService(serviceName);
WifiCertManager.java
22
import android.os.
ServiceManager
;
147
ServiceManager
.getService(Context.DEVICE_POLICY_SERVICE));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
TelephonyComponentFactory.java
24
import android.os.
ServiceManager
;
134
ServiceManager
.getService(Context.DEVICE_IDLE_CONTROLLER));
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SimPhoneBookTest.java
19
import android.os.
ServiceManager
;
34
IIccPhoneBook.Stub.asInterface(
ServiceManager
.getService("simphonebook"));
/packages/apps/Settings/src/com/android/settings/dashboard/
SuggestionsChecks.java
30
import android.os.
ServiceManager
;
103
IBinder b =
ServiceManager
.getService(Context.WALLPAPER_SERVICE);
/packages/apps/Settings/src/com/android/settings/notification/
NotificationBackend.java
26
import android.os.
ServiceManager
;
38
ServiceManager
.getService(Context.NOTIFICATION_SERVICE));
/packages/services/Telecomm/src/com/android/server/telecom/components/
TelecomService.java
26
import android.os.
ServiceManager
;
139
ServiceManager
.getService(Context.AUDIO_SERVICE));
/platform_testing/utils/crashcollector/src/android/test/crashcollector/
Collector.java
28
import android.os.
ServiceManager
;
127
am =
ServiceManager
.checkService(Context.ACTIVITY_SERVICE);
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
PollingService.java
39
import android.os.
ServiceManager
;
/frameworks/base/services/core/java/com/android/server/policy/
EnableAccessibilityController.java
33
import android.os.
ServiceManager
;
87
.Stub.asInterface(
ServiceManager
.getService("accessibility"));
228
.Stub.asInterface(
ServiceManager
.getService("accessibility"));
257
.Stub.asInterface(
ServiceManager
.getService("accessibility"));
/frameworks/base/services/core/java/com/android/server/
CommonTimeManagementService.java
36
import android.os.
ServiceManager
;
151
if (
ServiceManager
.checkService(CommonTimeConfig.SERVICE_NAME) == null) {
159
IBinder b =
ServiceManager
.getService(Context.NETWORKMANAGEMENT_SERVICE);
/packages/apps/Settings/src/com/android/settings/
PrivacySettings.java
28
import android.os.
ServiceManager
;
91
ServiceManager
.getService(Context.BACKUP_SERVICE));
266
ServiceManager
.getService(Context.BACKUP_SERVICE));
/frameworks/base/services/core/java/com/android/server/power/
ShutdownThread.java
40
import android.os.
ServiceManager
;
418
ActivityManagerNative.asInterface(
ServiceManager
.checkService("activity"));
432
ServiceManager
.getService("package");
462
ServiceManager
.checkService("mount"));
526
INfcAdapter.Stub.asInterface(
ServiceManager
.checkService("nfc"));
528
ITelephony.Stub.asInterface(
ServiceManager
.checkService("phone"));
530
IBluetoothManager.Stub.asInterface(
ServiceManager
.checkService(
/external/guava/guava/src/com/google/common/util/concurrent/
ServiceManager.java
85
* <p>Here is a simple example of how to use a {@code
ServiceManager
} to start a server.
90
*
ServiceManager
manager = new
ServiceManager
(services);
119
* <p>This class uses the
ServiceManager
's methods to start all of its services, to respond to
126
public final class
ServiceManager
{
127
private static final Logger logger = Logger.getLogger(
ServiceManager
.class.getName());
148
@Beta // Should come out of Beta when
ServiceManager
does
178
* {@link
ServiceManager
} constructor without having to close over the partially constructed
179
* {@link
ServiceManager
} instance (i.e. avoid leaking a pointer to {@code this}).
192
public
ServiceManager
(Iterable<? extends Service> services)
[
all
...]
Completed in 639 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>