HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 1 - 25 of 3010) 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/lisa/libs/utils/android/workloads/
camera_preview.py 36 action = 'android.intent.action.MAIN' variable in class:CameraPreview
camera_startup.py 41 action = 'android.intent.action.MAIN' variable in class:CameraStartup
display_image.py 35 action = 'android.intent.action.VIEW' variable in class:DisplayImage
93 System.start_action(self._target, self.action,
gmaps.py 36 action = 'android.intent.action.VIEW' variable in class:GMaps
90 System.start_action(self._target, self.action, loc_url)
youtube.py 33 action = 'android.intent.action.VIEW' variable in class:YouTube
89 System.start_action(self._target, self.action, video_url)
exoplayer.py 54 action = 'com.google.android.exoplayer.demo.action.VIEW' variable in class:ExoPlayer
88 .format(self.action, remote_file)
  /frameworks/support/navigation/common/src/test/java/androidx/navigation/
NavActionTest.java 38 NavAction action = new NavAction(DESTINATION_ID); local
40 assertThat(action.getDestinationId(), is(DESTINATION_ID));
45 NavAction action = new NavAction(DESTINATION_ID, null); local
47 assertThat(action.getDestinationId(), is(DESTINATION_ID));
48 assertThat(action.getNavOptions(), nullValue());
53 NavAction action = new NavAction(DESTINATION_ID); local
55 action.setNavOptions(navOptions);
57 assertThat(action.getNavOptions(), is(navOptions));
  /bionic/tests/
BionicDeathTest.h 33 struct sigaction64 action = { .sa_handler = SIG_DFL }; local
34 sigaction64(signo, &action, &previous_);
  /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/strace/
bpf_seccomp_filter.c 47 unsigned int action = SECCOMP_RET_ACTION_FULL & fp->k; local
48 unsigned int data = fp->k & ~action;
50 printxval(seccomp_ret_action, action, "SECCOMP_RET_???");
  /external/tensorflow/tensorflow/contrib/kfac/examples/
mlp_mnist_main.py 61 action="store_true", variable
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer_tool.py 106 action="store_true", variable
  /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/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);
  /frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
MetricsLoggerCompat.java 31 public void action(int category) { method in class:MetricsLoggerCompat
32 mMetricsLogger.action(category);
35 public void action(int category, int value) { method in class:MetricsLoggerCompat
36 mMetricsLogger.action(category, value);
  /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/Settings/src/com/android/settings/fuelgauge/anomaly/action/
AnomalyAction.java 17 package com.android.settings.fuelgauge.anomaly.action;
28 * Abstract class for anomaly action, which is triggered if we need to handle the anomaly
42 * handle the action when user clicks positive button
45 * @param contextMetricsKey key for the page that invokes the action
49 mMetricsFeatureProvider.action(mContext, mActionMetricKey, anomaly.packageName,
54 * Check whether the action is active for {@code anomaly}
57 * @return {@code true} if action is active, otherwise return {@code false}
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/instrumentation/
EventLogWriter.java 38 MetricsLogger.action(logMaker);
45 public void action(int category, int value, Pair<Integer, Object>... taggedData) { method in class:EventLogWriter
47 mMetricsLogger.action(category, value);
59 public void action(int category, boolean value, Pair<Integer, Object>... taggedData) { method in class:EventLogWriter
60 action(category, value ? 1 : 0, taggedData); method
63 public void action(Context context, int category, Pair<Integer, Object>... taggedData) { method in class:EventLogWriter
64 action(context, category, "", taggedData); method
73 MetricsLogger.action(logMaker);
76 /** @deprecated use {@link #action(int, int, Pair[])} */
78 public void action(Context context, int category, int value) method in class:EventLogWriter
84 public void action(Context context, int category, boolean value) { method in class:EventLogWriter
88 public void action(Context context, int category, String pkg, method in class:EventLogWriter
    [all...]

Completed in 3887 milliseconds

1 2 3 4 5 6 7 8 91011>>