Searched refs:action (Results 101 - 116 of 116) sorted by relevance

12345

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java1078 public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y, argument
1154 public void dispatchWallpaperCommand(String action, int x, int y, argument
/frameworks/base/core/java/android/content/
H A DSyncManager.java164 String action = intent.getAction();
165 if (Intent.ACTION_DEVICE_STORAGE_LOW.equals(action)) {
171 } else if (Intent.ACTION_DEVICE_STORAGE_OK.equals(action)) {
249 Log.v(TAG, "received connectivity action. network info: " + networkInfo);
/frameworks/base/core/java/android/server/
H A DBluetoothService.java1684 String action = intent.getAction();
1685 if (action.equals(Intent.ACTION_AIRPLANE_MODE_CHANGED)) {
1698 } else if (Intent.ACTION_DOCK_EVENT.equals(action)) {
/frameworks/base/awt/java/awt/
H A DComponent.java566 * the flip action.
1093 PrivilegedAction<String[]> action = new PrivilegedAction<String[]>() {
1101 String properties[] = AccessController.doPrivileged(action);
1799 public boolean action(Event evt, Object what) { method in class:Component
2800 return action(evt, evt.arg);
/frameworks/base/core/java/android/app/
H A DIActivityManager.java253 public void startRunning(String pkg, String cls, String action, argument
H A DActivityManagerNative.java1038 String action = data.readString();
1040 startRunning(pkg, cls, action, indata);
2487 public void startRunning(String pkg, String cls, String action, argument
2494 data.writeString(action);
/frameworks/base/core/java/android/view/
H A DViewGroup.java824 final int action = ev.getAction();
833 if (action == MotionEvent.ACTION_DOWN) {
844 // reset this event's action (just to protect ourselves)
877 boolean isUpOrCancel = (action == MotionEvent.ACTION_UP) ||
878 (action == MotionEvent.ACTION_CANCEL);
987 * with the action {@link MotionEvent#ACTION_CANCEL}, and all further
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCommandsInterface.java1025 * @param action is one of CF_ACTION_*
1029 void setCallForward(int action, int cfReason, int serviceClass, argument
H A DRIL.java1533 setCallForward(int action, int cfReason, int serviceClass, argument
1538 rr.mp.writeInt(action);
1546 + " " + action + " " + cfReason + " " + serviceClass
1558 rr.mp.writeInt(2); // 2 is for query action, not in used anyway
/frameworks/base/services/java/com/android/server/
H A DMountService.java80 * 100 series - Requestion action was initiated; expect another reply
88 * 200 series - Requestion action has been successfully completed.
95 * 400 series - Command was accepted, but the requested action
293 String action = intent.getAction();
295 if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
H A DPackageManagerService.java2091 String action = sintent.getAction();
2092 if (resultsAction != null && resultsAction.equals(action)) {
2093 // If this action was explicitly requested, then don't
2095 action = null;
2131 || (action != null && sri.filter.matchAction(action))) {
2171 final String action = it.next();
2172 if (resultsAction != null && resultsAction.equals(action)) {
2173 // If this action was explicitly requested, then don't
2179 if (rij.filter != null && rij.filter.hasAction(action)) {
4561 sendPackageBroadcast(String action, String pkg, Bundle extras, IIntentReceiver finishedReceiver) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DListView.java2041 int action = event.getAction();
2043 if (action != KeyEvent.ACTION_UP) {
2114 switch (action) {
H A DTextView.java296 * Interface definition for a callback to be invoked when an action is
301 * Called when an action is being performed.
304 * @param actionId Identifier of the action. This will be either the
310 * @return Return true if you have consumed the action, else false.
3028 * Change the custom IME action associated with the text view, which
3046 * Get the IME action label previous set with {@link #setImeActionLabel}.
3057 * Get the IME action ID previous set with {@link #setImeActionLabel}.
3068 * Set a special listener to be called when an action is performed
3070 * or when an action supplied to the IME is selected by the user. Setting
3086 * for this text view. The default implementation will call your action
4778 onPrivateIMECommand(String action, Bundle data) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1100 * @param action is one of CF_ACTION_*
1104 public void setCallForward(int action, int cfReason, int serviceClass, argument
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java518 private native boolean nativeHandleTouchEvent(int action, int x, int y, argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java525 * later restarted (hopefully due to some user action). The value is the
657 * State of all active sticky broadcasts. Keys are the action of the
659 * that action (which should usually be one).
1050 broadcastIntentLocked(null, null, new Intent("android.intent.action.ANR"),
7447 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
8677 public final void startRunning(String pkg, String cls, String action, argument
8686 mTopAction = action != null ? action : Intent.ACTION_MAIN;
10018 pw.print(" * Sticky action "); pw.print(ent.getKey());
12164 private final List getStickiesLocked(String action, IntentFilte argument
[all...]

Completed in 279 milliseconds

12345