HomeSort by relevance Sort by last modified time
    Searched refs:ActionService (Results 1 - 9 of 9) sorted by null

  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ActionService.java 24 * Class providing interface for the ActionService - can be stubbed for testing
26 public class ActionService {
34 * Start an action by posting it over the the ActionService
41 * Schedule a delayed action by posting it over the the ActionService
49 * Process a response from the BackgroundWorker in the ActionService
57 * Process a failure from the BackgroundWorker in the ActionService
RedownloadMmsAction.java 55 return ActionService.makeStartActionPendingIntent(context,
89 // Row must exist as was just loaded above (on ActionService thread)
BackgroundWorkerService.java 37 * Used to actually "send" messages which may take some time and should not block ActionService
48 private final ActionService mHost;
136 * Local execution of background work for action on ActionService thread
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
FakeDataModel.java 24 import com.android.messaging.datamodel.action.ActionService;
55 private ActionService mActionService;
85 public FakeDataModel withActionService(final ActionService ActionService) {
86 mActionService = ActionService;
218 public ActionService getActionService() {
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
DataModelImpl.java 24 import com.android.messaging.datamodel.action.ActionService;
62 private final ActionService mActionService;
71 mActionService = new ActionService();
168 public ActionService getActionService() {
DataModel.java 26 import com.android.messaging.datamodel.action.ActionService;
113 public abstract ActionService getActionService();
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
ActionServiceSystemTest.java 93 final ActionService service = DataModel.get().getActionService();
146 final ActionService service = DataModel.get().getActionService();
194 final ActionService service = DataModel.get().getActionService();
235 final ActionService service = DataModel.get().getActionService();
298 .withActionService(new ActionService())
ActionServiceTest.java 142 ActionService mService;
169 .withActionService(new ActionService())
ActionTestHelpers.java 123 public static class StubActionService extends ActionService {

Completed in 326 milliseconds