Searched refs:action (Results 76 - 100 of 304) sorted by relevance

1234567891011>>

/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/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; if the filter specifies no actions, then it will only match
90 * Intents that do not contain an action.
127 * that unlike the action, an IntentFilter with no categories
142 private static final String ACTION_STR = "action";
316 * Create a new IntentFilter instance with a specified action and MIME
321 * @param action The action to match, i.e. Intent.ACTION_VIEW.
324 * @return A new IntentFilter for the given action an
328 create(String action, String dataType) argument
351 IntentFilter(String action) argument
373 IntentFilter(String action, String dataType) argument
442 addAction(String action) argument
470 hasAction(String action) argument
482 matchAction(String action) argument
1104 match(String action, String type, String scheme, Uri data, Set<String> categories, String logTag) argument
[all...]
/frameworks/base/core/java/android/view/
H A DIWindow.aidl68 void dispatchWallpaperCommand(String action, int x, int y,
H A DKeyEvent.java69 * with the special action {@link #ACTION_MULTIPLE} that either specifies
1181 * for old applications, but still do the appropriate action when
1191 * event and should not perform the action normally associated with the
1193 * action for a key until it receives an up or the long press timeout has
1213 * press action was executed while it was down.
1363 * @param action Action code: either {@link #ACTION_DOWN},
1367 public KeyEvent(int action, int code) { argument
1368 mAction = action;
1381 * @param action Action code: either {@link #ACTION_DOWN},
1387 public KeyEvent(long downTime, long eventTime, int action, argument
1411 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState) argument
1438 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState, int deviceId, int scancode) argument
1468 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState, int deviceId, int scancode, int flags) argument
1500 KeyEvent(long downTime, long eventTime, int action, int code, int repeat, int metaState, int deviceId, int scancode, int flags, int source) argument
1602 obtain(long downTime, long eventTime, int action, int code, int repeat, int metaState, int deviceId, int scancode, int flags, int source, String characters) argument
1714 KeyEvent(KeyEvent origEvent, int action) argument
1736 changeAction(KeyEvent event, int action) argument
2791 actionToString(int action) argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DIAccessibilityInteractionConnection.aidl52 void performAccessibilityAction(long accessibilityNodeId, int action, in Bundle arguments,
/frameworks/base/core/java/com/android/internal/view/
H A DIInputContext.aidl70 void performPrivateCommand(String action, in Bundle data);
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusedLocationProvider.java74 String action = intent.getAction();
75 if (Intent.ACTION_USER_SWITCHED.equals(action)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DCarrierLabel.java81 String action = intent.getAction();
82 if (TelephonyIntents.SPN_STRINGS_UPDATED_ACTION.equals(action)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBatteryController.java68 final String action = intent.getAction();
69 if (action.equals(Intent.ACTION_BATTERY_CHANGED)) {
/frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
H A DFBOSyncView.java87 final int action = ev.getAction();
89 switch (action & MotionEvent.ACTION_MASK) {
H A DFBOTestView.java87 final int action = ev.getAction();
89 switch (action & MotionEvent.ACTION_MASK) {
/frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
H A DShadersTestView.java81 final int action = ev.getAction();
83 switch (action & MotionEvent.ACTION_MASK) {
/frameworks/ex/common/java/com/android/common/
H A DNetworkConnectivityListener.java65 String action = intent.getAction();
67 if (!action.equals(ConnectivityManager.CONNECTIVITY_ACTION) ||
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiAutomatorBridge.java30 * each action.
136 public boolean performGlobalAction(int action) { argument
137 return mUiAutomation.performGlobalAction(action);
/frameworks/base/services/input/
H A DInputDispatcher.cpp96 static inline int32_t getMotionEventActionPointerIndex(int32_t action) { argument
97 return (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
101 static bool isValidKeyAction(int32_t action) { argument
102 switch (action) {
111 static bool validateKeyEvent(int32_t action) { argument
112 if (! isValidKeyAction(action)) {
113 ALOGE("Key event has invalid action code 0x%x", action);
119 static bool isValidMotionAction(int32_t action, size_t pointerCount) { argument
120 switch (action
141 validateMotionEvent(int32_t action, size_t pointerCount, const PointerProperties* pointerProperties) argument
1144 int32_t action = entry->action; local
2278 int32_t action = originalMotionEntry->action; local
2561 int32_t action = keyEvent->getAction(); local
2592 int32_t action = motionEvent->getAction(); local
3833 KeyEntry(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState, int32_t repeatCount, nsecs_t downTime) argument
3865 MotionEntry(nsecs_t eventTime, int32_t deviceId, uint32_t source, uint32_t policyFlags, int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, float xPrecision, float yPrecision, nsecs_t downTime, int32_t displayId, uint32_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
3945 trackKey(const KeyEntry* entry, int32_t action, int32_t flags) argument
3996 trackMotion(const MotionEntry* entry, int32_t action, int32_t flags) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DMountService.java146 * 100 series - Requestion action was initiated; expect another reply
154 * 200 series - Requestion action has been successfully completed.
161 * 400 series - Command was accepted, but the requested action
275 ObbAction action = new UnmountObbAction(this, true);
276 mObbActionHandler.sendMessage(mObbActionHandler.obtainMessage(OBB_RUN_ACTION, action));
305 // OBB action handler messages
575 final String action = intent.getAction();
576 if (Intent.ACTION_USER_ADDED.equals(action)) {
581 } else if (Intent.ACTION_USER_REMOVED.equals(action)) {
610 String action
1138 sendStorageIntent(String action, StorageVolume volume, UserHandle user) argument
[all...]
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/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/tests/CameraBrowser/src/com/android/camerabrowser/
H A DMtpClient.java51 "android.mtp.MtpClient.action.USB_PERMISSION";
66 String action = intent.getAction();
73 if (UsbManager.ACTION_USB_DEVICE_ATTACHED.equals(action)) {
82 } else if (UsbManager.ACTION_USB_DEVICE_DETACHED.equals(action)) {
89 } else if (ACTION_USB_PERMISSION.equals(action)) {
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DGlobalActions.java444 final Action action = mItems.get(i);
446 if (mKeyguardShowing && !action.showDuringKeyguard()) {
449 if (!mDeviceProvisioned && !action.showBeforeProvisioning()) {
471 final Action action = mItems.get(i);
472 if (mKeyguardShowing && !action.showDuringKeyguard()) {
475 if (!mDeviceProvisioned && !action.showBeforeProvisioning()) {
479 return action;
497 Action action = getItem(position);
498 return action.create(mContext, convertView, parent, LayoutInflater.from(mContext));
519 * @return whether this action shoul
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardUpdateMonitor.java243 final String action = intent.getAction();
244 if (DEBUG) Log.d(TAG, "received broadcast " + action);
246 if (Intent.ACTION_TIME_TICK.equals(action)
247 || Intent.ACTION_TIME_CHANGED.equals(action)
248 || Intent.ACTION_TIMEZONE_CHANGED.equals(action)) {
250 } else if (TelephonyIntents.SPN_STRINGS_UPDATED_ACTION.equals(action)) {
254 } else if (Intent.ACTION_BATTERY_CHANGED.equals(action)) {
262 } else if (TelephonyIntents.ACTION_SIM_STATE_CHANGED.equals(action)) {
264 Log.v(TAG, "action " + action
[all...]
/frameworks/base/services/java/com/android/server/location/
H A DLocationProviderProxy.java57 Context context, String name, String action,
60 LocationProviderProxy proxy = new LocationProviderProxy(context, name, action,
70 private LocationProviderProxy(Context context, String name, String action, argument
75 mServiceWatcher = new ServiceWatcher(mContext, TAG + "-" + name, action, overlaySwitchResId,
56 createAndBind( Context context, String name, String action, int overlaySwitchResId, int defaultServicePackageNameResId, int initialPackageNamesResId, Handler handler) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindow.java77 public void dispatchWallpaperCommand(String action, int x, int y, argument
/frameworks/compile/mclinker/lib/LD/
H A DStaticResolver.cpp67 LinkAction action; local
70 action = link_action[row][col];
72 switch(action) {
79 case NOACT: { /* no action. */
187 error(diag::undefined_situation) << action << old->name() << pNew.name();
190 } // end of the big switch (action)
/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);

Completed in 833 milliseconds

1234567891011>>