OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ServiceManager
(Results
51 - 75
of
240
) sorted by null
1
2
3
4
5
6
7
8
9
10
/packages/apps/Settings/src/com/android/settings/
SetFullBackupPassword.java
23
import android.os.
ServiceManager
;
83
mBackupManager = IBackupManager.Stub.asInterface(
ServiceManager
.getService("backup"));
PrivacySettings.java
28
import android.os.
ServiceManager
;
62
ServiceManager
.getService(Context.BACKUP_SERVICE));
BatteryInfo.java
30
import android.os.
ServiceManager
;
167
mBatteryStats = IBatteryStats.Stub.asInterface(
ServiceManager
.getService(
169
mScreenStats = IPowerManager.Stub.asInterface(
ServiceManager
.getService(POWER_SERVICE));
/frameworks/base/core/java/android/os/
UpdateLock.java
37
ServiceManager
.getService(Context.UPDATE_LOCK_SERVICE));
CommonTimeConfig.java
25
import android.os.
ServiceManager
;
66
mRemote =
ServiceManager
.getService(SERVICE_NAME);
ServiceManager.java
27
public final class
ServiceManager
{
28
private static final String TAG = "
ServiceManager
";
/frameworks/native/include/binder/
IServiceManager.h
33
DECLARE_META_INTERFACE(
ServiceManager
);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccProvider.java
26
import android.os.
ServiceManager
;
289
ServiceManager
.getService("simphonebook"));
329
ServiceManager
.getService("simphonebook"));
353
ServiceManager
.getService("simphonebook"));
377
ServiceManager
.getService("simphonebook"));
/frameworks/base/services/java/com/android/server/power/
ShutdownThread.java
37
import android.os.
ServiceManager
;
323
ActivityManagerNative.asInterface(
ServiceManager
.checkService("activity"));
350
ServiceManager
.checkService("mount"));
387
INfcAdapter.Stub.asInterface(
ServiceManager
.checkService("nfc"));
389
ITelephony.Stub.asInterface(
ServiceManager
.checkService("phone"));
391
IBluetoothManager.Stub.asInterface(
ServiceManager
.checkService(
/cts/tests/tests/dreams/
Android.mk
34
# Need access to
ServiceManager
/frameworks/base/cmds/wm/src/com/android/commands/wm/
Wm.java
25
import android.os.
ServiceManager
;
64
mWm = IWindowManager.Stub.asInterface(
ServiceManager
.checkService(
/frameworks/base/core/java/android/app/
NotificationManager.java
23
import android.os.
ServiceManager
;
82
IBinder b =
ServiceManager
.getService("notification");
StatusBarManager.java
24
import android.os.
ServiceManager
;
81
ServiceManager
.getService(Context.STATUS_BAR_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/packages/SystemUI/src/com/android/systemui/media/
RingtonePlayer.java
29
import android.os.
ServiceManager
;
59
ServiceManager
.getService(Context.AUDIO_SERVICE));
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbDebuggingActivity.java
30
import android.os.
ServiceManager
;
124
IBinder b =
ServiceManager
.getService(USB_SERVICE);
UsbResolverActivity.java
30
import android.os.
ServiceManager
;
98
IBinder b =
ServiceManager
.getService(USB_SERVICE);
/frameworks/base/services/java/com/android/server/
LightsService.java
23
import android.os.
ServiceManager
;
180
ServiceManager
.addService("hardware", mLegacyFlashlightHack);
CommonTimeManagementService.java
39
import android.os.
ServiceManager
;
154
if (
ServiceManager
.checkService(CommonTimeConfig.SERVICE_NAME) == null) {
162
IBinder b =
ServiceManager
.getService(Context.NETWORKMANAGEMENT_SERVICE);
/frameworks/base/tests/permission/src/com/android/framework/permission/tests/
WindowManagerPermissionTests.java
22
import android.os.
ServiceManager
;
40
ServiceManager
.getService("window"));
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SimPhoneBookTest.java
19
import android.os.
ServiceManager
;
34
IIccPhoneBook.Stub.asInterface(
ServiceManager
.getService("simphonebook"));
/frameworks/base/core/java/android/net/
EthernetDataTracker.java
27
import android.os.
ServiceManager
;
147
IBinder b =
ServiceManager
.getService(Context.NETWORKMANAGEMENT_SERVICE);
209
IBinder b =
ServiceManager
.getService(Context.NETWORKMANAGEMENT_SERVICE);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsHelper.java
30
import android.os.
ServiceManager
;
145
ServiceManager
.getService(Context.BACKUP_SERVICE));
178
ServiceManager
.getService("power"));
/frameworks/base/policy/src/com/android/internal/policy/impl/
EnableAccessibilityController.java
31
import android.os.
ServiceManager
;
79
ServiceManager
.getService("window"));
82
.Stub.asInterface(
ServiceManager
.getService("accessibility"));
/frameworks/base/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
BackupRestoreConfirmation.java
29
import android.os.
ServiceManager
;
158
mBackupManager = IBackupManager.Stub.asInterface(
ServiceManager
.getService(Context.BACKUP_SERVICE));
159
mMountService = IMountService.Stub.asInterface(
ServiceManager
.getService("mount"));
Completed in 503 milliseconds
1
2
3
4
5
6
7
8
9
10