Home
last modified time | relevance | path

Searched refs:EXTRA_ACTION (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
DBackgroundWorkerService.java72 protected static final String EXTRA_ACTION = "action"; field in BackgroundWorkerService
82 intent.putExtra(EXTRA_ACTION, action); in startServiceWithAction()
121 final Action action = intent.getParcelableExtra(EXTRA_ACTION); in onHandleIntent()
/packages/apps/DeskClock/src/com/android/deskclock/
DAlarmSelectionActivity.java44 public static final String EXTRA_ACTION = "com.android.deskclock.EXTRA_ACTION"; field in AlarmSelectionActivity
74 mAction = intent.getIntExtra(EXTRA_ACTION, ACTION_INVALID); in onCreate()
DHandleApiCalls.java51 import static com.android.deskclock.AlarmSelectionActivity.EXTRA_ACTION;
203 .putExtra(EXTRA_ACTION, ACTION_DISMISS) in doInBackground()
222 .putExtra(EXTRA_ACTION, ACTION_DISMISS) in doInBackground()
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
DComposeActivity.java162 protected static final String EXTRA_ACTION = "action"; field in ComposeActivity
430 intent.putExtra(EXTRA_ACTION, action); in updateActionIntent()
471 intent.putExtra(EXTRA_ACTION, action); in launch()
544 action = savedState.getInt(EXTRA_ACTION, COMPOSE); in finishCreate()
565 action = intent.getIntExtra(EXTRA_ACTION, COMPOSE); in finishCreate()
1078 state.putInt(EXTRA_ACTION, mode); in saveState()
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DProfileService.java137 String action = intent.getStringExtra(AdapterService.EXTRA_ACTION); in onStartCommand()
DAdapterService.java114 public static final String EXTRA_ACTION="action"; field in AdapterService
692 intent.putExtra(EXTRA_ACTION,ACTION_SERVICE_STATE_CHANGED); in setGattProfileServiceState()
736 intent.putExtra(EXTRA_ACTION,ACTION_SERVICE_STATE_CHANGED); in setProfileServiceState()
/packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/
DComposeActivityTest.java829 intent.putExtra(ComposeActivity.EXTRA_ACTION, ComposeActivity.COMPOSE); in testMailToAccount()