HomeSort by relevance Sort by last modified time
    Searched full:actionservice (Results 1 - 16 of 16) 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
ActionServiceImpl.java 36 * ActionService used to perform background processing for data model
43 super("ActionService");
143 * Broadcast receiver for alarms scheduled through ActionService.
223 * Queue intent to the ActionService after acquiring wake lock
241 "ActionService.startServiceWithIntent: failed to start service for intent "
254 LogUtil.w(TAG, "ActionService.onHandleIntent: Called with null intent");
297 * Local execution of action on ActionService thread
313 * Process response on ActionService thread
325 * Process failure on ActionService thread
Action.java 140 * Queue an action and monitor for processing by the ActionService via the factory helper
148 * Queue an action for processing by the ActionService via the factory helper
155 * Queue an action for delayed processing by the ActionService via the factory helper
162 * Called when action queues ActionService intent
220 * Called by ActionService to process a response from the background worker
233 * Called by ActionService when a background action fails
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
ProcessDeliveryReportAction.java 89 // Row must exist as was just loaded above (on ActionService thread)
ResendMessageAction.java 85 // Row must exist as was just loaded above (on ActionService thread)
SyncMessagesAction.java 249 // If comparison succeeds bundle up the changes for processing in ActionService
  /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();
BugleDatabaseOperations.java 585 // Conversation always exists as this method is called from ActionService only after
    [all...]
  /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())
ActionTestHelpers.java 123 public static class StubActionService extends ActionService {
ActionServiceTest.java 142 ActionService mService;
169 .withActionService(new ActionService())
  /packages/apps/Messaging/
AndroidManifest.xml 466 <!-- Broadcast receiver that will be notified for ActionService alarms. -->

Completed in 202 milliseconds