HomeSort by relevance Sort by last modified time
    Searched defs:startService (Results 1 - 25 of 166) sorted by null

1 2 3 4 5 6 7

  /packages/services/Car/evs/manager/
service.cpp 41 static void startService(const char *hardwareServiceName, const char * managerServiceName) {
99 std::thread registrationThread(startService, evsHardwareServiceName, kManagedEnumeratorName);
  /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));
  /packages/apps/Camera2/src/com/android/camera/processing/
ProcessingServiceManager.java 83 startService();
141 startService();
158 private void startService() {
159 mAppContext.startService(new Intent(mAppContext, ProcessingService.class));
  /cts/apps/VpnApp/src/com/android/cts/vpnfirewall/
VpnClient.java 46 startService(new Intent(this, ReflectorVpnService.class));
  /cts/tests/tests/appcomponentfactory/src/android/app/componentfactory/cts/
AppComponentFactoryTest.java 55 mContext.startService(new Intent()
  /frameworks/base/tests/ActivityManagerPerfTests/tests/src/com/android/frameworks/perftests/am/tests/
ServiceStartPerfTest.java 40 private void startService(Intent intent) {
41 final ComponentName componentName = mContext.startService(intent);
46 * Benchmark time from Context.startService() to Service.onStartCommand() when target process is
56 startService(intent);
64 * Benchmark time from Context.startService() to Service.onStartCommand() when target process is
75 startService(intent);
83 * Benchmark time from Context.startService() to Service.onStartCommand() when service is
96 startService(intent);
107 * Benchmark time from Context.startService() with FLAG_GRANT_READ_URI_PERMISSION to
121 startService(intent)
    [all...]
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ituxdApp.java 38 startService(new Intent(this, ThermalService.class));
  /packages/apps/Stk/src/com/android/stk/
BootCompletedReceiver.java 46 context.startService(new Intent(context, StkAppService.class)
  /packages/services/Telecomm/src/com/android/server/telecom/components/
TelecomService.java 193 context.startService(new Intent(context, BluetoothPhoneService.class));
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
WifiScanningService.java 53 mImpl.startService();
  /packages/apps/Terminal/src/com/android/terminal/
TerminalService.java 50 startService(new Intent(this, TerminalService.class));
  /development/apps/BuildWidget/src/com/android/buildwidget/
BuildWidget.java 46 context.startService(new Intent(context, UpdateService.class));
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/a2dpsink/
A2dpSinkServiceTest.java 57 TestUtils.startService(mServiceRule, A2dpSinkService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/
AvrcpControllerServiceTest.java 58 TestUtils.startService(mServiceRule, AvrcpControllerService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/gatt/
GattServiceTest.java 46 TestUtils.startService(mServiceRule, GattService.class);
78 TestUtils.startService(mServiceRule, GattService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hdp/
HealthServiceTest.java 57 TestUtils.startService(mServiceRule, HealthService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hfpclient/
HeadsetClientServiceTest.java 58 TestUtils.startService(mServiceRule, HeadsetClientService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hid/
HidHostServiceTest.java 57 TestUtils.startService(mServiceRule, HidHostService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/map/
BluetoothMapServiceTest.java 57 TestUtils.startService(mServiceRule, BluetoothMapService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/opp/
BluetoothOppServiceTest.java 57 TestUtils.startService(mServiceRule, BluetoothOppService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/pan/
PanServiceTest.java 57 TestUtils.startService(mServiceRule, PanService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/pbap/
BluetoothPbapServiceTest.java 57 TestUtils.startService(mServiceRule, BluetoothPbapService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/pbapclient/
PbapClientServiceTest.java 57 TestUtils.startService(mServiceRule, PbapClientService.class);
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/sap/
SapServiceTest.java 57 TestUtils.startService(mServiceRule, SapService.class);
  /packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/
CellBroadcastServiceTestCase.java 67 public ComponentName startService(Intent service) {

Completed in 434 milliseconds

1 2 3 4 5 6 7