HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 201 - 225 of 4361) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/valgrind/gdbserver_tests/
nlpasssigalrm.stderr.exp 3 (action at startup) vgdb me ...
  /external/webrtc/webrtc/test/
rtp_rtcp_observer.h 33 enum Action {
42 virtual Action OnSendRtp(const uint8_t* packet, size_t length) {
46 virtual Action OnSendRtcp(const uint8_t* packet, size_t length) {
50 virtual Action OnReceiveRtp(const uint8_t* packet, size_t length) {
54 virtual Action OnReceiveRtcp(const uint8_t* packet, size_t length) {
95 RtpRtcpObserver::Action action; variable
98 action = observer_->OnSendRtp(packet, length);
100 action = observer_->OnReceiveRtp(packet, length);
103 switch (action) {
115 RtpRtcpObserver::Action action; variable
    [all...]
  /frameworks/support/compat/api21/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatApi21.java 34 static void addAction(Object info, Object action) {
35 ((AccessibilityNodeInfo) info).addAction((AccessibilityAction) action);
38 public static boolean removeAction(Object info, Object action) {
39 return ((AccessibilityNodeInfo) info).removeAction((AccessibilityAction) action);
98 static int getAccessibilityActionId(Object action) {
99 return ((AccessibilityNodeInfo.AccessibilityAction) action).getId();
102 static CharSequence getAccessibilityActionLabel(Object action) {
103 return ((AccessibilityNodeInfo.AccessibilityAction) action).getLabel();
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppHandoverReceiver.java 35 String action = intent.getAction(); local
37 if (action.equals(Constants.ACTION_HANDOVER_SEND) ||
38 action.equals(Constants.ACTION_HANDOVER_SEND_MULTIPLE)) {
49 if (action.equals(Constants.ACTION_HANDOVER_SEND)) {
52 } else if (action.equals(Constants.ACTION_HANDOVER_SEND_MULTIPLE)) {
71 } else if (action.equals(Constants.ACTION_WHITELIST_DEVICE)) {
77 } else if (action.equals(Constants.ACTION_STOP_HANDOVER)) {
86 if (D) Log.d(TAG, "Unknown action: " + action);
  /system/netd/server/
NetlinkHandler.cpp 62 NetlinkEvent::Action action = evt->getAction(); local
65 if (action == NetlinkEvent::Action::kAdd) {
67 } else if (action == NetlinkEvent::Action::kRemove) {
69 } else if (action == NetlinkEvent::Action::kChange) {
72 } else if (action == NetlinkEvent::Action::kLinkUp)
    [all...]
  /system/bt/stack/btm/
btm_ble_adv_filter.c 42 /* BLE meta vsc header: 1 bytes of sub_code, 1 byte of PCF action */
56 static UINT8 btm_ble_cs_update_pf_counter(tBTM_BLE_SCAN_COND_OP action,
112 void btm_ble_advfilt_enq_op_q(UINT8 action, UINT8 ocf, tBTM_BLE_FILT_CB_EVT cb_evt,
116 btm_ble_adv_filt_cb.op_q.action_ocf[btm_ble_adv_filt_cb.op_q.next_idx] = (action |(ocf << 4));
122 BTM_TRACE_DEBUG("btm_ble_advfilt_enq_op_q: act_ocf:%d, action:%d, ocf:%d,cb_evt;%d, cback:%x",
123 btm_ble_adv_filt_cb.op_q.action_ocf[btm_ble_adv_filt_cb.op_q.next_idx], action,
154 BTM_TRACE_DEBUG("btm_ble_advfilt_deq_op_q: ocf:%d, action:%d, ref_value:%d, cb_evt:%x",
259 UINT8 *p = p_params->p_param_buf, op_subcode = 0, action = 0xff; local
271 btm_ble_advfilt_deq_op_q(&action, &ocf, &cb_evt, &ref_value, &p_scan_cfg_cback,
276 btm_ble_advfilt_deq_op_q(&action, &ocf, &cb_evt, &ref_value, &p_scan_cfg_cback
    [all...]
  /external/chromium-trace/catapult/third_party/html5lib-python/
parse.py 154 parser.add_option("-p", "--profile", action="store_true", default=False,
159 action="store_true", default=False, dest="time",
162 parser.add_option("-b", "--treebuilder", action="store", type="string",
165 parser.add_option("-e", "--error", action="store_true", default=False,
168 parser.add_option("-f", "--fragment", action="store_true", default=False,
171 parser.add_option("", "--tree", action="store_true", default=False,
174 parser.add_option("-x", "--xml", action="store_true", default=False,
177 parser.add_option("", "--no-html", action="store_false", default=True,
180 parser.add_option("", "--hilite", action="store_true", default=False,
183 parser.add_option("-c", "--encoding", action="store_true", default=False
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleClientStartActivity.java 110 String action = intent.getAction();
111 if (action == BleClientService.BLE_BLUETOOTH_CONNECTED) {
114 } else if (action == BleClientService.BLE_SERVICES_DISCOVERED) {
117 } else if (action == BleClientService.BLE_CHARACTERISTIC_READ) {
120 } else if (action == BleClientService.BLE_CHARACTERISTIC_WRITE) {
123 } else if (action == BleClientService.BLE_RELIABLE_WRITE_COMPLETED) {
126 } else if (action == BleClientService.BLE_CHARACTERISTIC_CHANGED) {
129 } else if (action == BleClientService.BLE_DESCRIPTOR_READ) {
132 } else if (action == BleClientService.BLE_DESCRIPTOR_WRITE) {
135 } else if (action == BleClientService.BLE_READ_REMOTE_RSSI)
    [all...]
  /external/iproute2/tc/
m_gact.c 46 fprintf(stderr, "Usage: ... gact <ACTION> [RAND] [INDEX]\n");
49 "\tRAND := random <RANDTYPE> <ACTION> <VAL>\n"
55 fprintf(stderr, "Usage: ... gact <ACTION> [INDEX]\n");
87 fprintf(stderr,"bad action type %s\n",*argv);
99 int action = TC_POLICE_RECLASSIFY; local
108 p.action = TC_POLICE_RECLASSIFY;
117 action = get_act(&argv);
118 if (action != -10) {
119 p.action = action;
    [all...]
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/wizard/
WizardNewPaymentStepFragment.java 80 public void onGuidedActionClicked(GuidedAction action) {
81 if (action.getId() == GuidedAction.ACTION_ID_OK) {
91 public long onGuidedActionEditedAndProceed(GuidedAction action) {
96 if (action.getId() == ACTION_ID_CARD_NUMBER) {
97 CharSequence cardNumber = action.getEditTitle();
107 action.setDescription(getString(R.string.wizard_example_visa,
110 action.setDescription(getString(R.string.wizard_example_master,
115 action.setDescription(getString(R.string.wizard_example_input_card));
118 action.setDescription(getString(R.string.wizard_example_input_credit_wrong));
122 } else if (action.getId() == ACTION_ID_PAYMENT_EXP)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/
NotificationActionIntentService.java 35 * Processes notification action {@link Intent}s that need to run off the main thread.
41 public static final String ACTION_REPLY = "com.android.mail.action.notification.REPLY";
42 public static final String ACTION_REPLY_ALL = "com.android.mail.action.notification.REPLY_ALL";
43 public static final String ACTION_FORWARD = "com.android.mail.action.notification.FORWARD";
45 public static final String ACTION_MARK_READ = "com.android.mail.action.notification.MARK_READ";
49 "com.android.mail.action.notification.ARCHIVE";
50 public static final String ACTION_DELETE = "com.android.mail.action.notification.DELETE";
53 * This action cancels the undo notification, and does not commit any changes.
55 public static final String ACTION_UNDO = "com.android.mail.action.notification.UNDO";
58 * This action performs the actual destructive action
92 final String action = intent.getAction(); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestAttributes.java 58 String action = "i<3; '<xmltag>'"; local
60 new CommonToken(ANTLRParser.ACTION,action),0);
61 String expecting = action;
66 ST actionST = new ST(templates, "<action>");
67 actionST.add("action", rawTranslation);
73 String action = "int \\$n; \"\\$in string\\$\""; local
77 "@members {"+action+"}\n"+
79 " : {"+action+"}\n" +
88 new CommonToken(ANTLRParser.ACTION,action),0)
93 String action = "$i; $i.x; $u; $u.x"; local
115 String action = "x, (*a).foo(21,33), 3.2+1, '\\\\n', "+ local
169 String action = "34, '{', \\"it's<\\", '\\"', \\"\\\\\\"\\", 19"; local
205 String action = "(*a).foo(21,33,\\",\\")"; local
230 String action = "34<50"; local
256 String action = "$foo.get(\\"ick\\");"; local
285 String action = "$foo.get(\\"ick\\"); x=3;"; local
339 String action = "x, $A.text+\\"3242\\", (*$A).foo(21,33), 3.2+1, '\\\\n', "+ local
370 String action = "$x.foo"; local
396 String action = "$x.text"; local
418 String action = "$x"; local
444 String action = "$x.i"; local
470 String action = "$b = true;"; local
498 String action = "$x.i1"; local
524 String action = "$i; $i.x; $u; $u.x"; local
572 String action = action1; local
586 String action = "$x"; local
611 String action = "$id; $f; $id.text; $id.getText(); $id.dork " + local
635 String action = "$r.x; $r.start;\\n $r.stop;\\n $r.tree; $a.x; $a.stop;"; local
679 String action = "$r.x; $r.start; $r.stop; $r.tree; $a.x; $a.stop;"; local
707 String action = "$r.x; $r.start; $r.stop; $r.tree; $a.x; $a.tree;"; local
733 String action = "$r.z"; local
760 String action = "$r.n"; local
789 String action = "$r.blort"; local
817 String action = "$r"; local
845 String action = "$a"; local
871 String action = "public void foo() { $x; }"; local
895 String action = "public void foo() { $x.y; }"; local
923 String action = "$Symbols::names.add($id.text);"; local
950 String action = "$Symbols::names.add($id.text);"; local
976 String action = "$Symbols[-1]::names.add($id.text);"; local
1004 String action = "$Symbols[0]::names.add($id.text);"; local
1032 String action = "$Symbols[3]::names.add($id.text);"; local
1060 String action = "$foo_bar::a_b;"; local
1086 String action = "$Symbols::x;"; local
1116 String action = "public void foo() {$Symbols::names.add('foo');}"; local
1143 String action = "public void foo() {$a::name;}"; local
1168 String action = "$a::n;"; local
1193 String action = "$n;"; local
1220 String action = "$a;"; \/\/ refers to stack not top of stack local
1246 String action = "$a::n;"; local
1272 String action = "$Symbols;"; local
1302 String action = "$a::n;"; \/\/ must be qualified local
1329 String action = "$a.i;"; local
1350 String action = "$a.i;"; local
1372 String action = "$a.i = 1;"; local
1394 String action = "$a;"; local
1418 String action = "$x;"; local
1489 String action = "$a.st;"; \/\/ can be qualified local
1512 String action = "$b.start;"; local
1539 String action = "$b::n;"; local
1564 String action = "$st=null;"; local
1586 String action = "$text"; local
1609 String action = "$start;"; local
1633 String action = "$ID.text;"; \/\/ must be qualified local
1666 String action = "$b.text;"; \/\/ must be qualified local
1695 String action = "$a::x"; local
1726 String action = "$Symbols::x"; local
1757 String action = "$n;"; \/\/ must be qualified local
1854 String action = "$ids.size();"; \/\/ must be qualified local
1877 String action = "$ids.size();"; \/\/ must be qualified local
1901 String action = "$ids.size();"; \/\/ must be qualified local
1925 String action = "$ids.size();"; \/\/ must be qualified local
1949 String action = "$ID; $ID.text; $ID.getText()"; local
1975 String action = "$r.start;"; local
1999 String action = "$r.start;"; local
2023 String action = "$r.start;"; local
2048 String action = "$ID.text;"; local
2072 String action = "$ID.text;"; local
2309 String action = "$i.text"; local
2332 String action = "$ID.text"; local
2355 String action = "$ID"; local
2457 String action = "$text $type $line $pos $channel $index $start $stop"; local
2479 String action = "$a $b.text $c $d.text"; local
2502 String action = "$text $type=1 $line=1 $pos=1 $channel=1 $index"; local
2592 String action = "$id.tree;"; local
2618 String action = "$ID.tree;"; local
2640 String action = "$ID;"; local
2663 String action = "$ID.text;"; local
2686 String action = "$field::x = $field.st;"; local
2711 String action = "$rule.tree = null;"; local
2734 String action = "$rule.i = 42; $i = 23;"; local
2757 String action = "$rule.stop = 0;"; local
2784 String action = "$tree = null; $st = null; $start = 0; $stop = 0; $text = 0;"; local
2824 String action = "$other.tree = null;"; local
2854 String action = "$ID.text = \\"test\\";"; local
2883 String action = "$tree.scope = localScope;"; local
2912 String action = "$a.line == $b.line"; local
2936 String action = "if ($rule::foo == \\"foo\\" || 1) { System.out.println(\\"ouch\\"); }"; local
2982 String action = "$r.x; $r.start; $r.stop"; local
3016 String action = "$text"; local
3043 String action = "int x = $b::n;"; local
    [all...]
TestTemplates.java 49 String action = "x = %foo(name={$ID.text});"; local
61 "a : ID {"+action+"}\n" +
72 new CommonToken(ANTLRParser.ACTION,action),1);
87 String action = "x = %foo();"; local
98 "a : ID {"+action+"}\n" +
109 new CommonToken(ANTLRParser.ACTION,action),1);
124 String action = "x = %({\"foo\"})(name={$ID.text});"; local
136 "a : ID {"+action+"}\n"
161 String action = "x = %{$ID.text};"; local
196 String action = "%x.y = z;"; local
232 String action = "%{foo($ID.text).getST()}.y = z;"; local
290 String action = "%x .y = z;"; local
318 String action = "%x. y = z;"; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/logs/
layer1.py 18 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
138 return self.make_request(action='CreateLogGroup',
165 return self.make_request(action='CreateLogStream',
181 return self.make_request(action='DeleteLogGroup',
200 return self.make_request(action='DeleteLogStream',
219 return self.make_request(action='DeleteMetricFilter',
231 return self.make_request(action='DeleteRetentionPolicy',
267 return self.make_request(action='DescribeLogGroups',
307 return self.make_request(action='DescribeLogStreams',
347 return self.make_request(action='DescribeMetricFilters'
    [all...]
  /frameworks/base/core/java/android/app/admin/
DeviceAdminReceiver.java 73 * This is the primary action that a device administrator must implement to be
83 = "android.app.action.DEVICE_ADMIN_ENABLED";
86 * Action sent to a device administrator when the user has requested to
96 = "android.app.action.DEVICE_ADMIN_DISABLE_REQUESTED";
107 * Action sent to a device administrator when the user has disabled
111 * that this action will be
117 = "android.app.action.DEVICE_ADMIN_DISABLED";
120 * Action sent to a device administrator when the user has changed the password of their device
133 = "android.app.action.ACTION_PASSWORD_CHANGED";
136 * Action sent to a device administrator when the user has entered an incorrect devic
644 String action = intent.getAction(); local
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
PlaybackControlHelper.java 23 import android.support.v17.leanback.widget.Action;
108 public void onActionClicked(Action action) {
109 if (shouldDispatchAction(action)) {
110 dispatchAction(action);
113 super.onActionClicked(action);
119 Action action = getControlsRow().getActionForKeyCode(keyEvent.getKeyCode()); local
120 if (shouldDispatchAction(action)) {
121 dispatchAction(action);
    [all...]
PlaybackControlSupportHelper.java 25 import android.support.v17.leanback.widget.Action;
110 public void onActionClicked(Action action) {
111 if (shouldDispatchAction(action)) {
112 dispatchAction(action);
115 super.onActionClicked(action);
121 Action action = getControlsRow().getActionForKeyCode(keyEvent.getKeyCode()); local
122 if (shouldDispatchAction(action)) {
123 dispatchAction(action);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactsIntentResolver.java 54 String action = intent.getAction(); local
56 Log.i(TAG, "Called with action: " + action);
58 if (UiIntentActions.LIST_DEFAULT.equals(action) ) {
60 } else if (UiIntentActions.LIST_ALL_CONTACTS_ACTION.equals(action)) {
62 } else if (UiIntentActions.LIST_CONTACTS_WITH_PHONES_ACTION.equals(action)) {
64 } else if (UiIntentActions.LIST_STARRED_ACTION.equals(action)) {
66 } else if (UiIntentActions.LIST_FREQUENT_ACTION.equals(action)) {
68 } else if (UiIntentActions.LIST_STREQUENT_ACTION.equals(action)) {
70 } else if (UiIntentActions.LIST_GROUP_ACTION.equals(action)) {
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
ActionAdapter.java 81 * Called when the user clicks on an action.
83 public void onActionClicked(Action action);
89 * Called when the user focuses on an action.
91 public void onActionFocused(Action action);
95 * Object listening for adapter action select/unselect events.
100 * Called when user finish selecting an action.
102 public void onActionSelect(Action action);
188 Action action = mActions.get(position); local
283 Action action = (Action) v.getTag(R.id.action_title); local
369 final Action action = (Action) v.getTag(R.id.action_title); local
383 Action action = (Action) v.getTag(R.id.action_title); local
445 final Action action = (Action) v.getTag(R.id.action_title); local
    [all...]
  /external/vogar/src/vogar/
Driver.java 53 private final Map<String, Action> actions = Collections.synchronizedMap(
54 new LinkedHashMap<String, Action>());
87 for (Action action : actions.values()) {
88 action.setUserDir(new File(run.runnerDir, action.getName()));
89 Outcome outcome = outcomes.get(action.getName());
92 } else if (run.expectationStore.get(action.getName()).getResult() == Result.UNSUPPORTED) {
93 addEarlyResult(new Outcome(action.getName(), Result.UNSUPPORTED,
96 enqueueActionTasks(action);
202 Action action = new Action(className, className, null, null, null); local
203 actions.put(action.getName(), action); local
    [all...]
  /bionic/linker/
debugger.cpp 69 int32_t action; member in struct:debugger_msg_t
238 msg.action = DEBUGGER_ACTION_CRASH;
303 struct sigaction action; local
304 memset(&action, 0, sizeof(action));
305 sigemptyset(&action.sa_mask);
306 action.sa_sigaction = debuggerd_signal_handler;
307 action.sa_flags = SA_RESTART | SA_SIGINFO;
310 action.sa_flags |= SA_ONSTACK;
312 sigaction(SIGABRT, &action, nullptr)
    [all...]
  /cts/suite/audio_quality/test/
TaskSequentialTest.cpp 26 TaskGeneric* action = NULL; local
27 mTestCase = getTaskCase(setup, action);
30 ASSERT_TRUE(action != NULL);
32 action->addChild(mSequential);
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/
BootBroadcastReceiver.java 47 String action = intent.getAction(); local
48 Log.i(TAG, "Received action: " + action + ", user unlocked: " + UserManagerCompat
51 bootCompleted = Intent.ACTION_LOCKED_BOOT_COMPLETED.equals(action);
53 bootCompleted = Intent.ACTION_BOOT_COMPLETED.equals(action);
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/
BootBroadcastReceiver.java 47 String action = intent.getAction(); local
48 Log.i(TAG, "Received action: " + action + ", user unlocked: " + UserManagerCompat
51 bootCompleted = Intent.ACTION_LOCKED_BOOT_COMPLETED.equals(action);
53 bootCompleted = Intent.ACTION_BOOT_COMPLETED.equals(action);
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiDirectBroadcastReceiver.java 60 String action = intent.getAction(); local
61 Log.d(WiFiServiceDiscoveryActivity.TAG, action);
62 if (WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION.equals(action)) {
83 .equals(action)) {

Completed in 1470 milliseconds

1 2 3 4 5 6 7 891011>>