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

123456

/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/include/androidfw/
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)
202 int32_t action,
223 int32_t action,
/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/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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickSettings.java267 private void startSettingsActivity(String action) { argument
268 Intent intent = new Intent(action);
857 final String action = intent.getAction();
858 if (DisplayManager.ACTION_WIFI_DISPLAY_STATUS_CHANGED.equals(action)) {
863 } else if (BluetoothAdapter.ACTION_STATE_CHANGED.equals(action)) {
868 } else if (BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED.equals(action)) {
873 } else if (Intent.ACTION_USER_SWITCHED.equals(action)) {
882 final String action = intent.getAction();
883 if (ContactsContract.Intents.ACTION_PROFILE_CHANGED.equals(action) ||
884 Intent.ACTION_USER_INFO_CHANGED.equals(action)) {
[all...]
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp169 int uniqueId, const String8* path, const int action) {
176 data.writeInt32(action);
409 int BpDrmManagerService::checkRightsStatus(int uniqueId, const String8& path, int action) { argument
416 data.writeInt32(action);
424 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
433 data.writeInt32(action);
459 int action, const ActionDescription& description) {
466 data.writeInt32(action);
1120 const int action = data.readInt32(); local
1121 const int result = checkRightsStatus(uniqueId, path, action);
168 getConstraints( int uniqueId, const String8* path, const int action) argument
423 consumeRights( int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
457 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
1137 const int action = data.readInt32(); local
1174 const int action = data.readInt32(); local
[all...]
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp168 DrmConstraints* DrmManager::getConstraints(int uniqueId, const String8* path, const int action) { argument
173 return rDrmEngine.getConstraints(uniqueId, path, action);
289 int DrmManager::checkRightsStatus(int uniqueId, const String8& path, int action) { argument
294 return rDrmEngine.checkRightsStatus(uniqueId, path, action);
300 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
305 result = drmEngine->consumeRights(uniqueId, decryptHandle, action, reserve);
322 int uniqueId, const String8& path, int action, const ActionDescription& description) {
327 return rDrmEngine.validateAction(uniqueId, path, action, description);
299 consumeRights( int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
321 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp99 int uniqueId, const String8* path, const int action) {
103 getDrmManagerService()->getConstraints(uniqueId, path, action);
169 int uniqueId, const String8& path, int action) {
173 getDrmManagerService()->checkRightsStatus(uniqueId, path, action);
180 int action, bool reserve) {
184 uniqueId, decryptHandle.get(), action, reserve);
202 int action, const ActionDescription& description) {
206 uniqueId, path, action, description);
98 getConstraints( int uniqueId, const String8* path, const int action) argument
168 checkRightsStatus( int uniqueId, const String8& path, int action) argument
178 consumeRights( int uniqueId, sp<DecryptHandle> &decryptHandle, int action, bool reserve) argument
200 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.java90 * which allows them to provide a custom large icon associated with this action.
96 * host when the user taps on an empty area (not performing an action
105 * (not performing an action in the host). The x and y arguments are
739 * @param action Name of the command to perform. This must be a scoped
746 public void sendWallpaperCommand(IBinder windowToken, String action, argument
751 windowToken, action, x, y, z, extras, false);
H A DFragmentManager.java191 * enqueues the request to pop, but the action will not be performed until the
208 * request to pop, but the action will not be performed until the application
230 * request to pop, but the action will not be performed until the application
1319 "Can not perform this action after onSaveInstanceState");
1323 "Can not perform this action inside of " + mNoTransactionsBecause);
1327 public void enqueueAction(Runnable action, boolean allowStateLoss) { argument
1338 mPendingActions.add(action);
/frameworks/base/core/java/android/view/
H A DChoreographer.java266 * @param action The callback action to run during the next frame.
272 public void postCallback(int callbackType, Runnable action, Object token) { argument
273 postCallbackDelayed(callbackType, action, token, 0);
283 * @param action The callback action to run during the next frame after the specified delay.
291 Runnable action, Object token, long delayMillis) {
292 if (action == null) {
293 throw new IllegalArgumentException("action must not be null");
299 postCallbackDelayedInternal(callbackType, action, toke
290 postCallbackDelayed(int callbackType, Runnable action, Object token, long delayMillis) argument
302 postCallbackDelayedInternal(int callbackType, Object action, Object token, long delayMillis) argument
339 removeCallbacks(int callbackType, Runnable action, Object token) argument
347 removeCallbacksInternal(int callbackType, Object action, Object token) argument
603 obtainCallbackLocked(long dueTime, Object action, Object token) argument
742 public Object action; // Runnable or FrameCallback field in class:Choreographer.CallbackRecord
781 addCallbackLocked(long dueTime, Object action, Object token) argument
803 removeCallbacksLocked(Object action, Object token) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DAccessibilityInjector.java210 * If an action identifier is added in this method, this
234 * the specified action.
236 * @param action An accessibility action identifier.
238 * the specified action.
240 public boolean supportsAccessibilityAction(int action) { argument
241 switch (action) {
254 * Performs the specified accessibility action.
256 * @param action The identifier of the action t
261 performAccessibilityAction(int action, Bundle arguments) argument
599 sendActionToAndroidVox(int action, Bundle arguments) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DIInputConnectionWrapper.java174 public void performPrivateCommand(String action, Bundle data) { argument
175 dispatchMessage(obtainMessageOO(DO_PERFORM_PRIVATE_COMMAND, action, data));
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java396 final int action = event.getAction();
403 logCoords(type, action, i, mTempCoords, id,
410 logCoords(type, action, i, mTempCoords, id,
415 private void logCoords(String type, int action, int index, argument
418 switch (action & MotionEvent.ACTION_MASK) {
435 if (index == ((action & MotionEvent.ACTION_POINTER_INDEX_MASK)
443 if (index == ((action & MotionEvent.ACTION_POINTER_INDEX_MASK)
463 prefix = Integer.toString(action);
492 final int action = event.getAction();
495 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.java351 * @param action Action defined in {@link DrmStore.Action}.
357 public ContentValues getConstraints(String path, int action) { argument
358 if (null == path || path.equals("") || !DrmStore.Action.isValid(action)) {
361 return _getConstraints(mUniqueId, path, action);
383 * @param action Action defined in {@link DrmStore.Action}.
388 public ContentValues getConstraints(Uri uri, int action) { argument
392 return getConstraints(convertUriToPath(uri), action);
656 * @param action The {@link DrmStore.Action} to perform.
660 public int checkRightsStatus(String path, int action) { argument
661 if (null == path || path.equals("") || !DrmStore.Action.isValid(action)) {
676 checkRightsStatus(Uri uri, int action) argument
877 _checkRightsStatus(int uniqueId, String path, int action) argument
[all...]
/frameworks/base/libs/androidfw/
H A DInput.cpp124 int32_t action,
133 mAction = action;
285 int32_t action,
300 mAction = action;
561 bool MotionEvent::isTouchEvent(int32_t source, int32_t action) { argument
564 switch (action & AMOTION_EVENT_ACTION_MASK) {
121 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
282 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
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java406 public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y, argument
413 action, x, y, z, extras, sync);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DEventSenderImpl.java454 private void executeTouchEvent(int action) { argument
461 switch(action) {
473 Log.w(LOG_TAG + "::executeTouchEvent(),", "action not supported:" + action);
492 SystemClock.uptimeMillis(), action,
499 private void executeKeyEvent(int action, int keyCode) { argument
500 KeyEvent event = new KeyEvent(action, keyCode);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java175 public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java1053 private void handleEcmTimer(int action) { argument
1054 phone.handleTimerInEmergencyCallbackMode(action);
1055 switch(action) {
1059 Log.e(LOG_TAG, "handleEcmTimer, unsupported action " + action);
/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/core/java/android/content/
H A DIntentFilter.java50 * <em>action</em>, <em>data</em>, and <em>categories</em>. For each of these
84 * the <strong>action</strong> and <strong>category</strong> must match, and
89 * Intent action, <em>or</em> if no actions were specified in the filter.
126 * that unlike the action, an IntentFilter with no categories
141 private static final String ACTION_STR = "action";
315 * Create a new IntentFilter instance with a specified action and MIME
320 * @param action The action to match, i.e. Intent.ACTION_VIEW.
323 * @return A new IntentFilter for the given action and type.
327 public static IntentFilter create(String action, Strin argument
350 IntentFilter(String action) argument
372 IntentFilter(String action, String dataType) argument
441 addAction(String action) argument
469 hasAction(String action) argument
481 matchAction(String action) argument
1103 match(String action, String type, String scheme, Uri data, Set<String> categories, String logTag) argument
[all...]

Completed in 778 milliseconds

123456