Home | History | Annotate | Download | only in action

Lines Matching refs:action

17 package com.android.messaging.datamodel.action;
28 final Action action, final int requestCode, final boolean launchesAnActivity) {
29 return ActionServiceImpl.makeStartActionPendingIntent(context, action, requestCode,
34 * Start an action by posting it over the the ActionService
36 public void startAction(final Action action) {
37 ActionServiceImpl.startAction(action);
41 * Schedule a delayed action by posting it over the the ActionService
43 public void scheduleAction(final Action action, final int code,
45 ActionServiceImpl.scheduleAction(action, code, delayMs);
52 final Action action, final Bundle response) {
53 ActionServiceImpl.handleResponseFromBackgroundWorker(action, response);
59 protected void handleFailureFromBackgroundWorker(final Action action,
61 ActionServiceImpl.handleFailureFromBackgroundWorker(action, exception);