Home
last modified time | relevance | path

Searched refs:PrepareUpdateService (Results 1 – 3 of 3) sorted by relevance

/bootable/recovery/updater_sample/tests/src/com/example/android/systemupdatersample/
DUpdateManagerTest.java39 import com.example.android.systemupdatersample.services.PrepareUpdateService;
131 PrepareUpdateService.EXTRA_PARAM_RESULT_RECEIVER); in mockContextStartServiceAnswer()
137 resultReceiver.send(PrepareUpdateService.RESULT_CODE_SUCCESS, b); in mockContextStartServiceAnswer()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/services/
DPrepareUpdateService.java58 public class PrepareUpdateService extends IntentService { class
99 Intent intent = new Intent(context, PrepareUpdateService.class); in startService()
105 public PrepareUpdateService() { in PrepareUpdateService() method in PrepareUpdateService
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/
DUpdateManager.java25 import com.example.android.systemupdatersample.services.PrepareUpdateService;
301 PrepareUpdateService.startService(context, config, mHandler, (code, payloadSpec) -> { in applyUpdate()
302 if (code != PrepareUpdateService.RESULT_CODE_SUCCESS) { in applyUpdate()