Lines Matching refs:action

142          * 100 series - Requestion action was initiated; expect another reply
150 * 200 series - Requestion action has been successfully completed.
157 * 400 series - Command was accepted, but the requested action
266 ObbAction action = new UnmountObbAction(this, true);
267 mObbActionHandler.sendMessage(mObbActionHandler.obtainMessage(OBB_RUN_ACTION, action));
296 // OBB action handler messages
570 final String action = intent.getAction();
571 if (Intent.ACTION_USER_ADDED.equals(action)) {
576 } else if (Intent.ACTION_USER_REMOVED.equals(action)) {
784 String action = null;
834 action = Intent.ACTION_MEDIA_REMOVED;
839 action = Intent.ACTION_MEDIA_UNMOUNTED;
843 action = Intent.ACTION_MEDIA_BAD_REMOVAL;
848 if (action != null) {
849 sendStorageIntent(action, volume, UserHandle.ALL);
868 String action = null;
889 action = Intent.ACTION_MEDIA_UNMOUNTED;
895 action = Intent.ACTION_MEDIA_CHECKING;
899 action = Intent.ACTION_MEDIA_MOUNTED;
901 action = Intent.ACTION_MEDIA_EJECT;
911 action = Intent.ACTION_MEDIA_SHARED;
920 if (action != null) {
921 sendStorageIntent(action, volume, UserHandle.ALL);
940 String action = null;
953 action = Intent.ACTION_MEDIA_NOFS;
961 action = Intent.ACTION_MEDIA_UNMOUNTABLE;
970 if (action != null) {
971 sendStorageIntent(action, volume, UserHandle.ALL);
1112 private void sendStorageIntent(String action, StorageVolume volume, UserHandle user) {
1113 final Intent intent = new Intent(action, Uri.parse("file://" + volume.getPath()));
1921 final ObbAction action = new MountObbAction(obbState, key, callingUid);
1922 mObbActionHandler.sendMessage(mObbActionHandler.obtainMessage(OBB_RUN_ACTION, action));
1925 Slog.i(TAG, "Send to OBB handler: " + action.toString());
1942 final ObbAction action = new UnmountObbAction(newState, force);
1943 mObbActionHandler.sendMessage(mObbActionHandler.obtainMessage(OBB_RUN_ACTION, action));
1946 Slog.i(TAG, "Send to OBB handler: " + action.toString());
2180 final ObbAction action = (ObbAction) msg.obj;
2183 Slog.i(TAG, "OBB_RUN_ACTION: " + action.toString());
2193 action.handleError();
2198 mActions.add(action);
2210 for (ObbAction action : mActions) {
2212 action.handleError();
2216 final ObbAction action = mActions.get(0);
2217 if (action != null) {
2218 action.execute(this);
2235 for (ObbAction action : mActions) {
2237 action.handleError();
2339 Slog.i(TAG, "Starting to execute action: " + toString());
2358 Slog.d(TAG, "Error handling OBB action", e);