HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 1 - 25 of 2353) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/site_tests/power_LoadTest/extension/
ct.js 5 request = {action: "should_scroll"} property in class:request
  /external/curl/lib/
sigpipe.h 48 struct sigaction action; local
52 action = ig->old_pipe_act;
54 action.sa_handler = SIG_IGN;
55 sigaction(SIGPIPE, &action, NULL);
  /external/toybox/toys/other/
oneit.c 51 int action = RB_AUTOBOOT; local
54 if (signal == SIGUSR1) action = RB_HALT_SYSTEM;
55 if (signal == SIGUSR2) action = RB_POWER_OFF;
60 if (!vfork()) reboot(action);
  /libcore/ojluni/src/main/java/sun/security/action/
GetBooleanAction.java 26 package sun.security.action;
30 * as a privileged action.
36 * property named <code>"prop"</code> as a privileged action: <p>
LoadLibraryAction.java 26 package sun.security.action;
29 * A convenience class for loading a system library as a privileged action.
35 * <code>"lib"</code> as a privileged action: <p>
PutAllAction.java 26 package sun.security.action;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
BackgroundWorker.java 17 package com.android.messaging.datamodel.action;
22 * Interface between action service and its workers
27 * Send list of requests from action service to a worker
29 public void queueBackgroundWork(final List<Action> backgroundActions) {
HandleLowStorageAction.java 17 package com.android.messaging.datamodel.action;
26 * Action used to handle low storage related issues on the device.
28 public class HandleLowStorageAction extends Action implements Parcelable {
33 final HandleLowStorageAction action = new HandleLowStorageAction( local
35 action.start();
39 final HandleLowStorageAction action = new HandleLowStorageAction( local
41 action.start();
67 Assert.fail("Unsupported action type!");
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
LxxActionTestsBase.java 17 package com.android.inputmethod.keyboard.action;
  /system/bt/bta/jv/
bta_jv_main.c 38 /* state machine action enumeration list */
41 /* type for action functions */
44 /* action function list */
87 UINT16 action = (p_msg->event & 0x00ff); local
88 /* execute action functions */
90 if(action < BTA_JV_NUM_ACTIONS)
92 (*bta_jv_action[action])((tBTA_JV_MSG*)p_msg);
  /system/bt/bta/mce/
bta_mce_main.c 40 /* state machine action enumeration list */
43 /* type for action functions */
46 /* action function list */
68 UINT16 action = (p_msg->event & 0x00ff); local
70 /* execute action functions */
71 if(action < BTA_MCE_NUM_ACTIONS)
73 (*bta_mce_action[action])((tBTA_MCE_MSG*)p_msg);
  /system/bt/bta/sdp/
bta_sdp.c 40 /* state machine action enumeration list */
43 /* type for action functions */
46 /* action function list */
67 UINT16 action = (p_msg->event & 0x00ff); local
69 /* execute action functions */
70 if(action < BTA_SDP_NUM_ACTIONS)
72 (*bta_sdp_action[action])((tBTA_SDP_MSG*)p_msg);
  /packages/apps/Messaging/src/com/android/messaging/receiver/
MmsWapPushReceiver.java 24 import com.android.messaging.datamodel.action.ReceiveMmsMessageAction;
54 final ReceiveMmsMessageAction action = new ReceiveMmsMessageAction(subId, data); local
55 action.start();
  /packages/apps/TV/src/com/android/tv/menu/
ActionCardView.java 63 public void onBind(MenuAction action, boolean selected) {
65 Log.d(TAG, "onBind: action=" + action.getActionName(getContext()));
67 mIconView.setImageDrawable(action.getDrawable(getContext()));
68 mLabelView.setText(action.getActionName(getContext()));
69 mStateView.setText(action.getActionDescription(getContext()));
70 if (action.isEnabled()) {
86 Log.d(TAG, "onSelected: action=" + mLabelView.getText());
93 Log.d(TAG, "onDeselected: action=" + mLabelView.getText());
  /cts/suite/audio_quality/test/
TaskProcessTest.cpp 29 TaskGeneric* action = NULL; local
30 mTestCase = getTaskCase(setup, action);
33 ASSERT_TRUE(action != NULL);
41 ASSERT_TRUE(action->addChild(mSequential));
TaskSequentialTest.cpp 26 TaskGeneric* action = NULL; local
27 mTestCase = getTaskCase(setup, action);
30 ASSERT_TRUE(action != NULL);
32 action->addChild(mSequential);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeWizard.h 47 NSInteger action; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeWizard.h 47 NSInteger action; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeWizard.h 47 NSInteger action; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.h 48 NSInteger action; variable
59 @property NSInteger action; variable
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Barrier.java 51 action(); // perform the requested operation method
60 public void action() { method in class:Barrier
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
dynamodb_load 101 action="store_true", variable
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowKeyEvent.java 10 private int action; field in class:ShadowKeyEvent
13 public void __constructor__(int action, int code) {
14 this.action = action;
20 return action;
  /external/vogar/src/vogar/tasks/
PrepareUserDirTask.java 20 import vogar.Action;
26 private final Action action; field in class:PrepareUserDirTask
28 public PrepareUserDirTask(Target target, Action action) {
29 super("prepare " + action.getUserDir());
31 this.action = action;
35 File userDir = action.getUserDir();
37 File resourcesDirectory = action.getResourcesDirectory()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
PointerCountClassifier.java 38 int action = event.getActionMasked(); local
40 if (action == MotionEvent.ACTION_DOWN) {
44 if (action == MotionEvent.ACTION_POINTER_DOWN) {

Completed in 1970 milliseconds

1 2 3 4 5 6 7 8 91011>>