OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:servicemanager
(Results
1 - 25
of
263
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/sepolicy/
servicemanager.te
0
#
servicemanager
- the Binder context manager
2
type
servicemanager
, domain;
3
permissive
servicemanager
;
6
init_daemon_domain(
servicemanager
)
7
unconfined_domain(
servicemanager
)
/system/core/include/sysutils/
ServiceManager.h
20
class
ServiceManager
{
22
ServiceManager
();
23
virtual ~
ServiceManager
() {}
/frameworks/native/cmds/servicemanager/
Android.mk
11
LOCAL_MODULE :=
servicemanager
/system/core/libsysutils/
Android.mk
14
src/
ServiceManager
.cpp \
/system/core/libsysutils/src/
ServiceManager.cpp
4
#include <sysutils/
ServiceManager
.h>
10
ServiceManager
::
ServiceManager
() {
41
int
ServiceManager
::start(const char *name) {
70
int
ServiceManager
::stop(const char *name) {
100
bool
ServiceManager
::isRunning(const char *name) {
/frameworks/base/tests/permission/src/com/android/framework/permission/tests/
ServiceManagerPermissionTests.java
24
import android.os.
ServiceManager
;
40
ServiceManager
.addService("activity", binder);
41
fail("
ServiceManager
.addService did not throw SecurityException as"
VibratorServicePermissionTest.java
25
import android.os.
ServiceManager
;
39
ServiceManager
.getService("vibrator"));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccPhoneBookInterfaceManagerProxy.java
19
import android.os.
ServiceManager
;
36
if(
ServiceManager
.getService("simphonebook") == null) {
37
ServiceManager
.addService("simphonebook", this);
IccSmsInterfaceManagerProxy.java
20
import android.os.
ServiceManager
;
30
if(
ServiceManager
.getService("isms") == null) {
31
ServiceManager
.addService("isms", this);
PhoneSubInfoProxy.java
22
import android.os.
ServiceManager
;
30
if(
ServiceManager
.getService("iphonesubinfo") == null) {
31
ServiceManager
.addService("iphonesubinfo", this);
/frameworks/base/services/java/com/android/server/
SystemServer.java
35
import android.os.
ServiceManager
;
213
ServiceManager
.addService(Context.POWER_SERVICE, power);
220
ServiceManager
.addService(Context.DISPLAY_SERVICE, display, true);
224
ServiceManager
.addService("telephony.registry", telephonyRegistry);
227
ServiceManager
.addService(Context.SCHEDULING_POLICY_SERVICE,
260
ServiceManager
.addService("entropy", new EntropyMixer(context));
263
ServiceManager
.addService(Context.USER_SERVICE,
272
ServiceManager
.addService(Context.ACCOUNT_SERVICE, accountManager);
289
ServiceManager
.addService("battery", battery);
293
ServiceManager
.addService("vibrator", vibrator)
[
all
...]
ShutdownActivity.java
26
import android.os.
ServiceManager
;
50
ServiceManager
.getService(Context.POWER_SERVICE));
/cts/tests/tests/dreams/src/android/service/dreams/cts/
DreamsFeatureTest.java
19
import android.os.
ServiceManager
;
29
ServiceManager
.getService(DreamService.DREAM_SERVICE));
/frameworks/base/core/java/com/android/internal/app/
DisableCarModeActivity.java
24
import android.os.
ServiceManager
;
35
ServiceManager
.getService("uimode"));
/frameworks/base/cmds/svc/src/com/android/commands/svc/
DataCommand.java
19
import android.os.
ServiceManager
;
56
IConnectivityManager.Stub.asInterface(
ServiceManager
.getService(Context.CONNECTIVITY_SERVICE));
66
= ITelephony.Stub.asInterface(
ServiceManager
.getService(Context.TELEPHONY_SERVICE));
WifiCommand.java
19
import android.os.
ServiceManager
;
56
IConnectivityManager.Stub.asInterface(
ServiceManager
.getService(Context.CONNECTIVITY_SERVICE));
66
= IWifiManager.Stub.asInterface(
ServiceManager
.getService(Context.WIFI_SERVICE));
UsbCommand.java
22
import android.os.
ServiceManager
;
50
IUsbManager usbMgr = IUsbManager.Stub.asInterface(
ServiceManager
.getService(
/development/apps/SdkSetup/src/com/android/sdksetup/
DefaultActivity.java
27
import android.os.
ServiceManager
;
53
ServiceManager
.getService(Context.BACKUP_SERVICE));
/frameworks/base/core/tests/coretests/src/android/os/
BrightnessLimit.java
24
import android.os.
ServiceManager
;
49
ServiceManager
.getService("power"));
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SimSmsTest.java
20
import android.os.
ServiceManager
;
34
ISms sms = ISms.Stub.asInterface(
ServiceManager
.getService("isms"));
/frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/core/
ShellUiAutomatorBridge.java
31
import android.os.
ServiceManager
;
98
IWindowManager.Stub.asInterface(
ServiceManager
.getService(Context.WINDOW_SERVICE));
112
IPowerManager.Stub.asInterface(
ServiceManager
.getService(Context.POWER_SERVICE));
/frameworks/base/cmds/system_server/library/
system_init.cpp
5
* context manager, supplying the root
ServiceManager
object
57
ALOGI("
ServiceManager
: %p\n", sm.get());
/frameworks/base/core/java/android/os/
SystemVibrator.java
38
ServiceManager
.getService("vibrator"));
44
ServiceManager
.getService("vibrator"));
/frameworks/base/telephony/java/android/telephony/
CellLocation.java
21
import android.os.
ServiceManager
;
43
ITelephony phone = ITelephony.Stub.asInterface(
ServiceManager
.getService("phone"));
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
PowerTest.java
25
import android.os.
ServiceManager
;
45
mPowerManager = IPowerManager.Stub.asInterface(
ServiceManager
.getService("power"));
Completed in 635 milliseconds
1
2
3
4
5
6
7
8
9
10
11