Searched refs:action (Results 176 - 200 of 424) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/LD/
H A DNamePool.cpp105 unsigned int action = Resolver::LastAction; local
112 m_pResolver->resolveAgain(*this, action, *old_symbol, *new_symbol, pResult);
/frameworks/support/v4/java/android/support/v4/media/session/
H A DIMediaSession.aidl62 void sendCustomAction(String action, in Bundle args);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRemotePlaybackClient.java288 final ItemActionCallback callback, String action) {
293 if (action.equals(MediaControlIntent.ACTION_ENQUEUE)) {
297 Intent intent = new Intent(action);
727 private boolean routeSupportsAction(String action) { argument
728 return mRoute.supportsControlAction(MediaControlIntent.CATEGORY_REMOTE_PLAYBACK, action);
800 String action = intent.getAction();
801 if (action.equals(ACTION_ITEM_STATUS_CHANGED)) {
826 } else if (action.equals(ACTION_SESSION_STATUS_CHANGED)) {
286 playOrEnqueue(Uri contentUri, String mimeType, Bundle metadata, long positionMillis, Bundle extras, final ItemActionCallback callback, String action) argument
/frameworks/av/drm/libdrmframework/plugins/passthru/src/
H A DDrmPassthruPlugIn.cpp60 int uniqueId, const String8* path, int action) {
178 int DrmPassthruPlugIn::onCheckRightsStatus(int uniqueId, const String8& path, int action) { argument
185 int action, bool reserve) {
197 int action, const ActionDescription& description) {
59 onGetConstraints( int uniqueId, const String8* path, int action) argument
184 onConsumeRights(int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
196 onValidateAction(int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/base/core/java/android/view/
H A DViewParent.java193 * Start an action mode for the specified view.
198 * then it should override this and start the action mode.</p>
200 * @param originalView The source view where the action mode was first invoked
201 * @param callback The callback that will handle lifecycle events for the action mode
202 * @return The new action mode if it was started, null otherwise
557 * React to an accessibility action delegated by a target descendant view before the target
567 * @param target The target view dispatching this action
568 * @param action Action being performed; see
570 * @param arguments Optional action arguments
571 * @return true if the action wa
573 onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java92 public void dispatchWallpaperCommand(String action, int x, int y, argument
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DConnectivityManagerTestBase.java100 String action = intent.getAction();
101 if (!action.equals(ConnectivityManager.CONNECTIVITY_ACTION)) {
110 String action = intent.getAction();
112 if (action.equals(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION)) {
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardViewBase.java94 * Sets an action to run when keyguard finishes.
96 * @param action
98 public void setOnDismissAction(OnDismissAction action) { argument
99 mDismissAction = action;
444 void setOnDismissAction(OnDismissAction action) {
445 KeyguardViewBase.this.setOnDismissAction(action);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DSwipeHelper.java179 final int action = ev.getAction();
181 switch (action) {
298 final int action = ev.getAction();
299 switch (action) {
/frameworks/base/services/core/java/com/android/server/
H A DNetworkScoreService.java79 String action = intent.getAction();
80 if ((Intent.ACTION_PACKAGE_CHANGED.equals(action) ||
81 Intent.ACTION_PACKAGE_REPLACED.equals(action) ||
82 Intent.ACTION_PACKAGE_FULLY_REMOVED.equals(action)) &&
303 * <p>May be used to perform an action on all score caches without potentially strange behavior
304 * if a new scorer is registered during that action's execution.
H A DServiceWatcher.java97 public ServiceWatcher(Context context, String logTag, String action, argument
103 mAction = action;
140 String action = intent.getAction();
141 if (Intent.ACTION_USER_SWITCHED.equals(action)) {
214 if (D) Log.d(mTag, "Unable to query intent services for action: " + mAction);
/frameworks/base/services/core/java/com/android/server/notification/
H A DNextAlarmTracker.java228 final String action = intent.getAction();
229 if (DEBUG) Slog.d(TAG, "onReceive " + action);
231 if (action.equals(AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED)) {
236 } else if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
H A DTrackerService.java386 String action = intent.getAction();
388 if (action.equals(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION)) {
396 } else if (action.equals(ConnectivityManager.CONNECTIVITY_ACTION)) {
409 } else if (action.equals(WifiManager.WIFI_STATE_CHANGED_ACTION)) {
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingTest.java84 public void runOnUiThread(Runnable action) { argument
85 synchronized(action) {
86 mActivity.runOnUiThread(action);
88 action.wait();
90 Log.v(TAG, "waiting for action running on UI thread is interrupted: " +
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DImageProcessingTest.java99 public void runOnUiThread(Runnable action) { argument
100 synchronized(action) {
101 mActivity.runOnUiThread(action);
103 action.wait();
105 Log.v(TAG, "waiting for action running on UI thread is interrupted: " +
/frameworks/base/core/java/android/printservice/
H A DPrintService.java96 * is triggered exclusively by an explicit user action through enabling or disabling it
108 * also specify that it handles the {@link android.content.Intent} with action {@link
120 * &lt;action android:name="android.printservice.PrintService" /&gt;
139 * &lt;action android:name="android.printservice.PrintService" /&gt;
162 * The {@link Intent} action that must be declared as handled by a service
426 final int action = message.what;
427 switch (action) {
545 throw new IllegalArgumentException("Unknown message: " + action);
/frameworks/base/core/java/android/widget/
H A DAdapterViewFlipper.java89 final String action = intent.getAction();
90 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
93 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsActivity.java38 public static final String TOGGLE_RECENTS_INTENT = "com.android.systemui.recent.action.TOGGLE_RECENTS";
39 public static final String PRELOAD_INTENT = "com.android.systemui.recent.action.PRELOAD";
41 public static final String CLOSE_RECENTS_INTENT = "com.android.systemui.recent.action.CLOSE";
42 public static final String WINDOW_ANIMATION_START_INTENT = "com.android.systemui.recent.action.WINDOW_ANIMATION_START";
78 final int action = ev.getAction();
79 if (action == MotionEvent.ACTION_OUTSIDE
80 || (action == MotionEvent.ACTION_DOWN
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DGestureRecorder.java51 String actionName(int action) { argument
52 switch (action) {
62 return String.valueOf(action);
67 ("{\"type\":\"motion\", \"time\":%d, \"action\":\"%s\", "
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarWindowView.java201 final int action = ev.getAction();
202 if (!handled && (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL)) {
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DEnableAccessibilityController.java172 final int action = event.getActionMasked();
174 if (action == MotionEvent.ACTION_UP) {
179 switch (action) {
/frameworks/native/cmds/service/
H A Dservice.cpp163 char* action = NULL; local
183 if (strcmp(key, "action") == 0)
185 action = value;
219 writeString16(data, action);
280 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
/frameworks/support/v4/java/android/support/v4/app/
H A DNavUtils.java73 String action = activity.getIntent().getAction();
74 return action != null && !action.equals(Intent.ACTION_MAIN);
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerTabStrip.java222 final int action = ev.getAction();
223 if (action != MotionEvent.ACTION_DOWN && mIgnoreTap) {
231 switch (action) {
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecLocalDeviceTv.java246 * Performs the action 'device select', or 'one touch play' initiated by TV.
434 List<SendKeyAction> action = getActions(SendKeyAction.class);
440 if (!action.isEmpty()) {
441 action.get(0).processKeyEvent(keyCode, isPressed);
590 // promptly, rather than waiting till the new device action is finished.
631 for (NewDeviceAction action : getActions(NewDeviceAction.class)) {
632 // If there is new device action which has the same logical address and path
640 if (action.isActionOf(activeSource)) {
766 DeviceDiscoveryAction action = new DeviceDiscoveryAction(this,
775 // device discovery action doe
[all...]

Completed in 1081 milliseconds

1234567891011>>