HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 226 - 250 of 919) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/init/
init.h 28 /* list of commands in an action */
36 struct action { struct
98 struct action onrestart; /* Actions to execute on restart. */
init_parser.c 321 void (*func)(struct action *act))
324 struct action *act;
326 act = node_to_item(node, struct action, alist);
336 struct action *act;
338 act = node_to_item(node, struct action, alist);
355 struct action *act;
357 act = node_to_item(node, struct action, alist);
386 struct action *act;
402 void action_add_queue_tail(struct action *act)
407 struct action *action_remove_queue_head(void
    [all...]
  /external/blktrace/
blkrawverify.c 82 static char *act_to_str(__u32 action)
86 unsigned int act = action & 0xffff;
87 unsigned int trace = (action >> BLK_TC_SHIFT) & 0xffff;
99 sprintf(buf, "Invalid action=%08x", action);
112 fprintf(ofp, " %8s: %s\n", "action", act_to_str(bit->action));
217 if (bit->action & BLK_TC_ACT(BLK_TC_NOTIFY))
blkiomon.c 119 fprintf(debug.fp, "action %16x\n", bit->action);
146 fprintf(debug.fp, "action %16x %16x\n", bit1->action, bit2->action);
322 if (BLK_DATADIR(bit_c->action) & BLK_TC_READ) {
326 } else if (BLK_DATADIR(bit_c->action) & BLK_TC_WRITE) {
360 static int action(int a) function
382 action(t->bit.action) == action(bit->action))
    [all...]
  /external/chromium/third_party/icu/source/common/
ucnvmbcs.h 245 * MBCS action codes for conversions to Unicode.
269 #define MBCS_ENTRY_FINAL(state, action, value) (int32_t)(0x80000000|((int32_t)(state)<<24L)|((action)<<20L)|(value))
271 #define MBCS_ENTRY_FINAL_SET_ACTION(entry, action) (int32_t)(((entry)&0xff0fffff)|((int32_t)(action)<<20L))
273 #define MBCS_ENTRY_FINAL_SET_ACTION_VALUE(entry, action, value) (int32_t)(((entry)&0xff000000)|((int32_t)(action)<<20L)|(value))
  /external/icu4c/common/
ucnvmbcs.h 245 * MBCS action codes for conversions to Unicode.
269 #define MBCS_ENTRY_FINAL(state, action, value) (int32_t)(0x80000000|((int32_t)(state)<<24L)|((action)<<20L)|(value))
271 #define MBCS_ENTRY_FINAL_SET_ACTION(entry, action) (int32_t)(((entry)&0xff0fffff)|((int32_t)(action)<<20L))
273 #define MBCS_ENTRY_FINAL_SET_ACTION_VALUE(entry, action, value) (int32_t)(((entry)&0xff000000)|((int32_t)(action)<<20L)|(value))
  /sdk/emulator/qtools/
callstack.h 77 enum Action { NONE, PUSH, POP, NATIVE_PUSH };
79 Action getAction(BBEvent *event, symbol_type *function);
86 void doPop(BBEvent *event, symbol_type *function, Action methodAction);
172 Action action = getAction(event, function); local
177 action = NONE;
184 if (action == PUSH) {
186 } else if (action == POP) {
192 if (action == POP && mPrevFunction->vm_sym == NULL) {
203 action = methodAction
249 Action action; local
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
KeyguardUpdateMonitor.java 224 final String action = intent.getAction();
225 if (DEBUG) Log.d(TAG, "received broadcast " + action);
227 if (Intent.ACTION_TIME_TICK.equals(action)
228 || Intent.ACTION_TIME_CHANGED.equals(action)
229 || Intent.ACTION_TIMEZONE_CHANGED.equals(action)) {
231 } else if (SPN_STRINGS_UPDATED_ACTION.equals(action)) {
235 } else if (Intent.ACTION_BATTERY_CHANGED.equals(action)) {
244 } else if (TelephonyIntents.ACTION_SIM_STATE_CHANGED.equals(action)) {
248 } else if (AudioManager.RINGER_MODE_CHANGED_ACTION.equals(action)) {
251 } else if (TelephonyManager.ACTION_PHONE_STATE_CHANGED.equals(action)) {
    [all...]
  /system/vold/
Volume.cpp 451 int action = 0; local
455 action = 2; // SIGKILL
457 action = 1; // SIGHUP
460 SLOGW("Failed to move %s -> %s (%s, retries %d, action %d)",
461 src, dst, strerror(errno), retries, action);
462 Process::killProcessesWithOpenFiles(src, action);
484 int action = 0; local
488 action = 2; // SIGKILL
490 action = 1; // SIGHUP
494 SLOGW("Failed to unmount %s (%s, retries %d, action %d)"
    [all...]
  /packages/apps/Phone/src/com/android/phone/
OutgoingCallBroadcaster.java 211 String action = intent.getAction(); local
231 Log.w(TAG, "Attempt to deliver non-CALL action; forcing to CALL");
238 if (Intent.ACTION_CALL_PRIVILEGED.equals(action)) {
239 action = emergencyNumber
242 if (DBG) Log.v(TAG, "- updating action from CALL_PRIVILEGED to " + action);
243 intent.setAction(action);
246 if (Intent.ACTION_CALL.equals(action)) {
270 } else if (Intent.ACTION_CALL_EMERGENCY.equals(action)) {
CallForwardEditPreference.java 84 int action = (isToggled() || (mButtonClicked == DialogInterface.BUTTON_POSITIVE)) ? local
92 if (action == CommandsInterface.CF_ACTION_REGISTRATION
100 if (DBG) Log.d(LOG_TAG, "reason=" + reason + ", action=" + action
108 // should be action, reason...
109 phone.setCallForwardingOption(action,
114 action,
149 // arg1: action -- register vs. disable
  /external/webkit/WebKitTools/QtLauncher/
main.cpp 492 editMenu->addAction(page()->action(QWebPage::Undo));
493 editMenu->addAction(page()->action(QWebPage::Redo));
495 editMenu->addAction(page()->action(QWebPage::Cut));
496 editMenu->addAction(page()->action(QWebPage::Copy));
497 editMenu->addAction(page()->action(QWebPage::Paste));
503 viewMenu->addAction(page()->action(QWebPage::Stop));
504 viewMenu->addAction(page()->action(QWebPage::Reload));
519 formatMenu->addAction(page()->action(QWebPage::ToggleBold));
520 formatMenu->addAction(page()->action(QWebPage::ToggleItalic));
521 formatMenu->addAction(page()->action(QWebPage::ToggleUnderline))
    [all...]
  /frameworks/base/cmds/keystore/
keystore.c 238 * performing an action. The number of parameters required by each action is
239 * fixed and defined in a table. If the return value of an action is positive,
467 static struct action { struct
501 struct action *action = actions; local
507 while (action->code && action->code != code) {
508 ++action;
510 if (!action->code)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 324 int action = event.getAction(); local
326 //Log.i(TAG, "Motion: action=0x" + Integer.toHexString(action)
339 if (action == MotionEvent.ACTION_DOWN
340 || (action & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_POINTER_DOWN) {
341 final int index = (action & MotionEvent.ACTION_POINTER_INDEX_MASK)
343 if (action == MotionEvent.ACTION_DOWN) {
376 mCurDown = action != MotionEvent.ACTION_UP
377 && action != MotionEvent.ACTION_CANCEL;
406 if (action == MotionEvent.ACTION_U
    [all...]
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
CommandLineProcessor.java 30 * <li>pass an action array to the constructor.
40 * Steps needed to add a new action:
41 * - Each action is defined as a "verb object" followed by parameters.
46 * or optional) for the given action.
68 * Action definitions.
72 * for each action that is printed in the help.
126 * of verb/action.
180 * @param longFlagName The long flag name for the given action. Mandatory. Cannot be null.
214 * @param longFlagName The long flag name for the given action.
386 // Validate that all mandatory arguments are non-null for this action
    [all...]
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 66 unsigned int action; /* 0=entry, 1=exit, 2=exception exit */ member in struct:dataRecord
173 int action; local
257 action = 0;
268 action = 1;
280 action = 1;
308 if (action == 0)
312 records[nextRecord].action = action;
429 unsigned int val = METHOD_COMBINE(pRecord->methodId, pRecord->action);
  /external/chromium/third_party/libevent/test/
regress_rpc.c 113 EVTAG_ASSIGN(kill_reply, action, "wave around like an idiot");
346 char *action; local
362 if (EVTAG_GET(kill, action, &action) == -1) {
363 fprintf(stderr, "get action\n");
370 if (strcmp(action, "wave around like an idiot"))
384 char *action; local
393 if (EVTAG_GET(kill, action, &action) == -1) {
394 fprintf(stderr, "get action\n")
    [all...]
  /frameworks/base/core/java/android/view/
ScaleGestureDetector.java 165 final int action = event.getAction(); local
169 switch (action & MotionEvent.ACTION_MASK) {
256 int id = (((action & MotionEvent.ACTION_POINTER_INDEX_MASK)
265 switch (action & MotionEvent.ACTION_MASK) {
271 int id = (((action & MotionEvent.ACTION_POINTER_INDEX_MASK)
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoder.java 51 * further action, which includes filling the input buffer, flushing the output
106 // specify the action if malformed input error encountered
109 // specify the action if unmappable character error encountered
193 * encountered, and the action for malformed error is
197 * charset was encountered, and the action for unmappable
292 * result can be returned only if the malformed action is
299 * only if the unmappable character action is
344 CodingErrorAction action = null; local
370 // set coding error handle action
371 action = malformAction
    [all...]
  /packages/apps/Camera/src/com/android/camera/
MenuHelper.java 87 String message, final Runnable action) {
92 if (action != null) action.run();
125 private static void startCameraActivity(Activity activity, String action,
127 Intent intent = new Intent(action);
  /packages/apps/Contacts/src/com/android/contacts/
DialtactsActivity.java 104 Intent intent = new Intent("com.android.phone.action.RECENT_CALLS");
115 Intent intent = new Intent("com.android.phone.action.TOUCH_DIALER");
208 final String action = newIntent.getAction(); local
209 if (action.equals(UI.FILTER_CONTACTS_ACTION)) {
218 final String action = intent.getAction(); local
219 if (Intent.ACTION_DIAL.equals(action)) {
222 if (Intent.ACTION_VIEW.equals(action)) {
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_upnp_web.c 229 * actionName will be replaced according to action requested
282 "<action>\n"
291 "</action>\n"
292 "<action>\n"
306 "</action>\n"
307 "<action>\n"
321 "</action>\n"
322 "<action>\n"
331 "</action>\n"
332 "<action>\n
1296 char *action; local
1358 const char *action; local
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp 354 // Lookup the appropriate editor command to use for WebAction \a action
355 const char* QWebPagePrivate::editorCommandForWebActions(QWebPage::WebAction action)
357 if ((action > QWebPage::NoWebAction) && (action < int(sizeof(editorCommandWebActions) / sizeof(const char*))))
358 return editorCommandWebActions[action];
475 static QWebPage::WebAction webActionForContextMenuAction(WebCore::ContextMenuAction action)
477 switch (action) {
517 QWebPage::WebAction action = webActionForContextMenuAction(item.action()); local
518 QAction *a = q->action(action)
986 QWebPage::WebAction action; member in struct:__anon8359
1117 Qt::DropAction action = dragOpToDropAction(page->dragController()->dragEntered(&dragData)); local
1129 Qt::DropAction action = dragOpToDropAction(page->dragController()->dragEntered(&dragData)); local
1160 Qt::DropAction action = dragOpToDropAction(page->dragController()->dragUpdated(&dragData)); local
1172 Qt::DropAction action = dragOpToDropAction(page->dragController()->dragUpdated(&dragData)); local
2240 QAction *QWebPage::action(WebAction action) const function in class:QWebPage
2773 QWebPage::WebAction action = webActionForContextMenuAction(WebCore::ContextMenuAction(i)); local
    [all...]
  /frameworks/base/libs/ui/
InputDispatcher.cpp 75 static inline int32_t getMotionEventActionPointerIndex(int32_t action) {
76 return (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
80 static bool isValidKeyAction(int32_t action) {
81 switch (action) {
90 static bool validateKeyEvent(int32_t action) {
91 if (! isValidKeyAction(action)) {
92 LOGE("Key event has invalid action code 0x%x", action);
98 static bool isValidMotionAction(int32_t action, size_t pointerCount) {
99 switch (action & AMOTION_EVENT_ACTION_MASK)
1042 int32_t action = entry->action; local
1639 int32_t action = keyEntry->action; local
1661 int32_t action = motionEntry->action; local
1994 int32_t action = originalMotionEntry->action; local
2284 int32_t action = keyEvent->getAction(); local
2306 int32_t action = motionEvent->getAction(); local
3217 int32_t action = entry->action; local
3257 int32_t action = entry->action & AMOTION_EVENT_ACTION_MASK; local
    [all...]
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
DeviceListActivity.java 180 String action = intent.getAction();
183 if (BluetoothDevice.ACTION_FOUND.equals(action)) {
191 } else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {

Completed in 898 milliseconds

1 2 3 4 5 6 7 8 91011>>