Searched defs:action (Results 51 - 75 of 146) sorted by relevance

123456

/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java426 public boolean performPrivateCommand(String action, Bundle data) { argument
/frameworks/base/core/java/android/widget/
H A DAbsSeekBar.java530 public boolean performAccessibilityAction(int action, Bundle arguments) { argument
531 if (super.performAccessibilityAction(action, arguments)) {
539 switch (action) {
/frameworks/base/core/java/com/android/internal/view/
H A DInputConnectionWrapper.java408 public boolean performPrivateCommand(String action, Bundle data) { argument
410 mIInputContext.performPrivateCommand(action, data);
H A DIInputConnectionWrapper.java174 public void performPrivateCommand(String action, Bundle data) { argument
175 dispatchMessage(obtainMessageOO(DO_PERFORM_PRIVATE_COMMAND, action, data));
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DAsecTests.java533 public void action() { method in class:AsecTests.StorageListener
550 action();
612 super.action();
668 public void action() { method in class:AsecTests.ShutdownObserver
680 action();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickSettings.java277 private void startSettingsActivity(String action) { argument
278 Intent intent = new Intent(action);
857 final String action = intent.getAction();
858 if (BluetoothAdapter.ACTION_STATE_CHANGED.equals(action)) {
863 } else if (BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED.equals(action)) {
868 } else if (Intent.ACTION_USER_SWITCHED.equals(action)) {
870 } else if (Intent.ACTION_CONFIGURATION_CHANGED.equals(action)) {
874 } else if (KeyChain.ACTION_STORAGE_CHANGED.equals(action)) {
883 final String action = intent.getAction();
884 if (ContactsContract.Intents.ACTION_PROFILE_CHANGED.equals(action) ||
[all...]
/frameworks/base/services/java/com/android/server/
H A DUiModeManagerService.java110 Slog.v(TAG, "Handling broadcast result for action " + intent.getAction()
348 String action = null;
365 action = UiModeManager.ACTION_ENTER_CAR_MODE;
373 action = UiModeManager.ACTION_ENTER_DESK_MODE;
377 action = oldAction;
380 if (action != null) {
383 "updateLocked: preparing broadcast: action=%s enable=0x%08x disable=0x%08x",
384 action, enableFlags, disableFlags));
393 Intent intent = new Intent(action);
423 Slog.v(TAG, "updateLocked: null action, mDockStat
443 updateAfterBroadcastLocked(String action, int enableFlags, int disableFlags) argument
[all...]
/frameworks/native/include/input/
H A DInputTransport.h61 int32_t action; member in struct:android::InputMessage::Body::Key
79 int32_t action; member in struct:android::InputMessage::Body::Motion
96 uint32_t index = (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
205 int32_t action,
226 int32_t action,
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDayPickerView.java467 public boolean performAccessibilityAction(int action, Bundle arguments) { argument
468 if (action != AccessibilityNodeInfo.ACTION_SCROLL_FORWARD &&
469 action != AccessibilityNodeInfo.ACTION_SCROLL_BACKWARD) {
470 return super.performAccessibilityAction(action, arguments);
480 if (action == AccessibilityNodeInfo.ACTION_SCROLL_FORWARD) {
486 } else if (action == AccessibilityNodeInfo.ACTION_SCROLL_BACKWARD) {
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java42 public static void addAction(Object info, int action) { argument
43 ((AccessibilityNodeInfo) info).addAction(action);
140 public static boolean performAction(Object info, int action) { argument
141 return ((AccessibilityNodeInfo) info).performAction(action);
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp157 int uniqueId, const String8* path, const int action) {
164 data.writeInt32(action);
399 int BpDrmManagerService::checkRightsStatus(int uniqueId, const String8& path, int action) { argument
406 data.writeInt32(action);
414 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
423 data.writeInt32(action);
449 int action, const ActionDescription& description) {
456 data.writeInt32(action);
1099 const int action = data.readInt32(); local
1100 const int result = checkRightsStatus(uniqueId, path, action);
156 getConstraints( int uniqueId, const String8* path, const int action) argument
413 consumeRights( int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
447 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
1116 const int action = data.readInt32(); local
1153 const int action = data.readInt32(); local
[all...]
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp158 DrmConstraints* DrmManager::getConstraints(int uniqueId, const String8* path, const int action) { argument
163 return rDrmEngine.getConstraints(uniqueId, path, action);
264 int DrmManager::checkRightsStatus(int uniqueId, const String8& path, int action) { argument
269 return rDrmEngine.checkRightsStatus(uniqueId, path, action);
275 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
280 result = drmEngine->consumeRights(uniqueId, decryptHandle, action, reserve);
297 int uniqueId, const String8& path, int action, const ActionDescription& description) {
302 return rDrmEngine.validateAction(uniqueId, path, action, description);
274 consumeRights( int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
296 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp90 int uniqueId, const String8* path, const int action) {
94 getDrmManagerService()->getConstraints(uniqueId, path, action);
160 int uniqueId, const String8& path, int action) {
164 getDrmManagerService()->checkRightsStatus(uniqueId, path, action);
171 int action, bool reserve) {
175 uniqueId, decryptHandle.get(), action, reserve);
193 int action, const ActionDescription& description) {
197 uniqueId, path, action, description);
89 getConstraints( int uniqueId, const String8* path, const int action) argument
159 checkRightsStatus( int uniqueId, const String8& path, int action) argument
169 consumeRights( int uniqueId, sp<DecryptHandle> &decryptHandle, int action, bool reserve) argument
191 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp108 DrmConstraints* FwdLockEngine::onGetConstraints(int uniqueId, const String8* path, int action) { argument
114 (RightsStatus::RIGHTS_VALID == onCheckRightsStatus(uniqueId, *path, action))) {
265 int action) {
270 // Only Transfer action is not allowed for forward Lock files.
272 switch(action) {
295 int action,
304 int action,
309 return (onCheckRightsStatus(uniqueId, path, action) == RightsStatus::RIGHTS_VALID);
263 onCheckRightsStatus(int uniqueId, const String8& path, int action) argument
293 onConsumeRights(int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
302 onValidateAction(int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java105 * which allows them to provide a custom large icon associated with this action.
111 * host when the user taps on an empty area (not performing an action
120 * (not performing an action in the host). The x and y arguments are
976 * @param action Name of the command to perform. This must be a scoped
983 public void sendWallpaperCommand(IBinder windowToken, String action, argument
988 windowToken, action, x, y, z, extras, false);
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java529 public void performAccessibilityActionClientThread(long accessibilityNodeId, int action, argument
540 args.argi2 = action;
565 final int action = args.argi2;
588 succeeded = provider.performAction(virtualDescendantId, action,
591 succeeded = target.performAccessibilityAction(action, arguments);
H A DChoreographer.java278 * @param action The callback action to run during the next frame.
284 public void postCallback(int callbackType, Runnable action, Object token) { argument
285 postCallbackDelayed(callbackType, action, token, 0);
295 * @param action The callback action to run during the next frame after the specified delay.
303 Runnable action, Object token, long delayMillis) {
304 if (action == null) {
305 throw new IllegalArgumentException("action must not be null");
311 postCallbackDelayedInternal(callbackType, action, toke
302 postCallbackDelayed(int callbackType, Runnable action, Object token, long delayMillis) argument
314 postCallbackDelayedInternal(int callbackType, Object action, Object token, long delayMillis) argument
351 removeCallbacks(int callbackType, Runnable action, Object token) argument
359 removeCallbacksInternal(int callbackType, Object action, Object token) argument
615 obtainCallbackLocked(long dueTime, Object action, Object token) argument
754 public Object action; // Runnable or FrameCallback field in class:Choreographer.CallbackRecord
793 addCallbackLocked(long dueTime, Object action, Object token) argument
815 removeCallbacksLocked(Object action, Object token) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java422 final int action = event.getAction();
429 logCoords(type, action, i, mTempCoords, id, event);
435 logCoords(type, action, i, mTempCoords, id, event);
439 private void logCoords(String type, int action, int index, argument
444 switch (action & MotionEvent.ACTION_MASK) {
461 if (index == ((action & MotionEvent.ACTION_POINTER_INDEX_MASK)
469 if (index == ((action & MotionEvent.ACTION_POINTER_INDEX_MASK)
489 prefix = Integer.toString(action);
524 final int action = event.getAction();
527 if (action
[all...]
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DBroadcastTest.java108 public Intent makeBroadcastIntent(String action) { argument
109 Intent intent = new Intent(action, null);
H A DLaunchpadActivity.java171 String action = getIntent().getAction();
174 if (LIFECYCLE_BASIC.equals(action)) {
177 } else if (LIFECYCLE_SCREEN.equals(action)) {
182 } else if (LIFECYCLE_DIALOG.equals(action)) {
186 } else if (LIFECYCLE_FINISH_CREATE.equals(action)) {
194 } else if (LIFECYCLE_FINISH_START.equals(action)) {
227 String action = getIntent().getAction();
231 if (LAUNCH.equals(action)) {
238 } else if (FORWARD_RESULT.equals(action)) {
243 } else if (BAD_PARCELABLE.equals(action)) {
438 makeBroadcastIntent(String action) argument
[all...]
/frameworks/base/drm/java/android/drm/
H A DDrmManagerClient.java362 * @param action Action defined in {@link DrmStore.Action}.
368 public ContentValues getConstraints(String path, int action) { argument
369 if (null == path || path.equals("") || !DrmStore.Action.isValid(action)) {
372 return _getConstraints(mUniqueId, path, action);
394 * @param action Action defined in {@link DrmStore.Action}.
399 public ContentValues getConstraints(Uri uri, int action) { argument
403 return getConstraints(convertUriToPath(uri), action);
667 * @param action The {@link DrmStore.Action} to perform.
671 public int checkRightsStatus(String path, int action) { argument
672 if (null == path || path.equals("") || !DrmStore.Action.isValid(action)) {
687 checkRightsStatus(Uri uri, int action) argument
888 _checkRightsStatus(int uniqueId, String path, int action) argument
[all...]
/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditor.java146 * Values used for the action parameter
158 * @param action The type of processing being performed
162 public void onProgress(Object item, int action, int progress); argument
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java408 public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y, argument
415 action, x, y, z, extras, sync);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java176 public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y, argument
/frameworks/native/libs/input/
H A DInput.cpp126 int32_t action,
135 mAction = action;
287 int32_t action,
302 mAction = action;
577 bool MotionEvent::isTouchEvent(int32_t source, int32_t action) { argument
580 switch (action & AMOTION_EVENT_ACTION_MASK) {
123 initialize( int32_t deviceId, int32_t source, int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState, int32_t repeatCount, nsecs_t downTime, nsecs_t eventTime) argument
284 initialize( int32_t deviceId, int32_t source, int32_t action, int32_t flags, int32_t edgeFlags, int32_t metaState, int32_t buttonState, float xOffset, float yOffset, float xPrecision, float yPrecision, nsecs_t downTime, nsecs_t eventTime, size_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument

Completed in 723 milliseconds

123456