HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 1 - 25 of 2936) 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
  /art/runtime/
runtime_linux.cc 47 struct sigaction action; local
48 memset(&action, 0, sizeof(action));
49 sigemptyset(&action.sa_mask);
50 action.sa_handler = SIG_DFL;
51 sigaction(signal_number, &action, nullptr);
  /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>
  /packages/apps/Contacts/src/com/android/contacts/interactions/
OnBootOrUpgradeReceiver.java 29 final String action = intent.getAction(); local
30 if (Intent.ACTION_BOOT_COMPLETED.equals(action)
31 || Intent.ACTION_MY_PACKAGE_REPLACED.equals(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.cc 36 /* state machine action enumeration list */
39 /* type for action functions */
42 /* action function list */
83 uint16_t action = (p_msg->event & 0x00ff); local
84 /* execute action functions */
86 if (action < BTA_JV_NUM_ACTIONS) {
87 (*bta_jv_action[action])((tBTA_JV_MSG*)p_msg);
  /system/bt/bta/mce/
bta_mce_main.cc 39 /* state machine action enumeration list */
42 /* type for action functions */
45 /* action function list */
66 uint16_t action = (p_msg->event & 0x00ff); local
68 /* execute action functions */
69 if (action < BTA_MCE_NUM_ACTIONS) {
70 (*bta_mce_action[action])((tBTA_MCE_MSG*)p_msg);
  /system/bt/bta/sdp/
bta_sdp.cc 38 /* state machine action enumeration list */
41 /* type for action functions */
44 /* action function list */
63 uint16_t action = (p_msg->event & 0x00ff); local
65 /* execute action functions */
66 if (action < BTA_SDP_NUM_ACTIONS) {
67 (*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()) {
88 Log.d(TAG, "onSelected: action=" + mLabelView.getText());
95 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/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) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
NonInterceptingScrollView.java 33 int action = ev.getActionMasked(); local
34 switch (action) {

Completed in 719 milliseconds

1 2 3 4 5 6 7 8 91011>>