HomeSort by relevance Sort by last modified time
    Searched refs:addService (Results 1 - 25 of 49) sorted by null

1 2

  /frameworks/base/tools/layoutlib/bridge/src/android/os/
ServiceManager.java 40 public static void addService(String name, IBinder service) {
  /frameworks/base/core/java/android/os/
ServiceManager.java 70 public static void addService(String name, IBinder service) {
72 getIServiceManager().addService(name, service, false);
74 Log.e(TAG, "error in addService", e);
87 public static void addService(String name, IBinder service, boolean allowIsolated) {
89 getIServiceManager().addService(name, service, allowIsolated);
91 Log.e(TAG, "error in addService", e);
IServiceManager.java 48 public void addService(String name, IBinder service, boolean allowIsolated)
ServiceManagerNative.java 77 addService(name, service, allowIsolated);
142 public void addService(String name, IBinder service, boolean allowIsolated)
  /frameworks/base/services/java/com/android/server/
SystemServer.java 193 ServiceManager.addService(Context.POWER_SERVICE, power);
214 ServiceManager.addService(Context.DISPLAY_SERVICE, display, true);
218 ServiceManager.addService("telephony.registry", telephonyRegistry);
221 ServiceManager.addService("scheduling_policy", new SchedulingPolicyService());
252 ServiceManager.addService("entropy", new EntropyMixer(context));
255 ServiceManager.addService(Context.USER_SERVICE,
265 ServiceManager.addService(Context.ACCOUNT_SERVICE, accountManager);
282 ServiceManager.addService("battery", battery);
286 ServiceManager.addService("vibrator", vibrator);
290 ServiceManager.addService(Context.CONSUMER_IR_SERVICE, consumerIr)
    [all...]
LightsService.java 180 ServiceManager.addService("hardware", mLegacyFlashlightHack);
  /frameworks/base/tests/permission/src/com/android/framework/permission/tests/
ServiceManagerPermissionTests.java 40 ServiceManager.addService("activity", binder);
41 fail("ServiceManager.addService did not throw SecurityException as"
  /frameworks/native/include/binder/
BinderService.h 39 return sm->addService(
IServiceManager.h 49 virtual status_t addService( const String16& name,
  /frameworks/native/services/surfaceflinger/
main_surfaceflinger.cpp 52 sm->addService(String16(SurfaceFlinger::getServiceName()), flinger, false);
  /hardware/qcom/display/msm8960/libqservice/
QService.cpp 79 sm->addService(String16("display.qservice"), sQService);
  /hardware/qcom/display/msm8974/libqservice/
QService.cpp 79 sm->addService(String16("display.qservice"), sQService);
  /hardware/qcom/display/msm8x26/libqservice/
QService.cpp 79 sm->addService(String16("display.qservice"), sQService);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccPhoneBookInterfaceManagerProxy.java 37 ServiceManager.addService("simphonebook", this);
PhoneSubInfoProxy.java 31 ServiceManager.addService("iphonesubinfo", this);
IccPhoneBookInterfaceManager.java 131 ServiceManager.addService("simphonebook", this);
  /system/core/healthd/
BatteryPropertiesRegistrar.cpp 33 defaultServiceManager()->addService(String16("batterypropreg"), this);
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattService.java 131 public boolean addService(BluetoothGattService service) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ServiceDeclaration.java 72 void addService(UUID uuid, int serviceType, int instance, int minHandles) {
HandleMap.java 89 void addService(int serverIf, int handle, UUID uuid, int serviceType, int instance) {
  /packages/experimental/RpcPerformance/
rpcperftest.cpp 54 status_t status = sm->addService(name, new BnInterface<ITestService>());
  /frameworks/base/services/common_time/
common_time_config_service.cpp 30 defaultServiceManager()->addService(ICommonTimeConfig::kServiceName, ctcs);
common_clock_service.cpp 32 defaultServiceManager()->addService(ICommonClock::kServiceName, tcc);
  /frameworks/native/libs/binder/
IServiceManager.cpp 156 virtual status_t addService(const String16& name, const sp<IBinder>& service,
213 status_t err = addService(which, b);
  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 229 if ((rv = sm->addService(serviceName,
231 cerr << "addService " << serviceName << " failed, rv: " << rv

Completed in 1232 milliseconds

1 2