Searched defs:mAction (Results 1 - 15 of 15) sorted by relevance

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DActionPresenterSelector.java39 Action mAction; field in class:ActionPresenterSelector.ActionViewHolder
60 vh.mAction = action;
66 ((ActionViewHolder) viewHolder).mAction = null;
82 vh.mAction = action;
113 vh.mAction = null;
/frameworks/base/core/java/android/view/
H A DDragEvent.java127 int mAction; field in class:DragEvent
257 mAction = action;
295 return obtain(source.mAction, source.mX, source.mY, source.mLocalState,
313 return mAction;
442 + " action=" + mAction + " @ (" + mX + ", " + mY + ") desc=" + mClipDescription
464 dest.writeInt(mAction);
489 event.mAction = in.readInt();
H A DKeyEvent.java1183 private int mAction; field in class:KeyEvent
1263 mAction = action;
1286 mAction = action;
1310 mAction = action;
1338 mAction = action;
1368 mAction = action;
1400 mAction = action;
1426 mAction = ACTION_MULTIPLE;
1440 mAction = origEvent.mAction;
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_KeyEvent.cpp41 jfieldID mAction; member in struct:android::__anon851
81 jint action = env->GetIntField(eventObj, gKeyEventClassInfo.mAction);
158 GET_FIELD_ID(gKeyEventClassInfo.mAction, gKeyEventClassInfo.clazz,
159 "mAction", "I");
/frameworks/base/services/core/java/com/android/server/
H A DServiceWatcher.java56 private final String mAction; field in class:ServiceWatcher
60 * implements mAction. When null, all packages in the system that matches one of the signature
103 mAction = action;
163 Intent intent = new Intent(mAction);
181 Log.w(mTag, packageName + " resolves service " + mAction
207 Log.d(mTag, String.format("bindBestPackage for %s : %s found %d, %s", mAction,
214 if (D) Log.d(mTag, "Unable to query intent services for action: " + mAction);
237 Intent intent = new Intent(mAction);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaMmiCode.java65 String mAction; // ACTION_REGISTER field in class:CdmaMmiCode
118 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION));
200 return mAction != null && mAction.equals(ACTION_REGISTER);
259 throw new RuntimeException ("Ivalid register/action=" + mAction);
/frameworks/wilhelm/tests/sandbox/
H A Dmonkey.c192 Action_pt mAction; member in struct:__anon1657
285 State_t nextState = (*transitionTable[i].mAction)(&player);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityEvent.java745 int mAction; field in class:AccessibilityEvent
765 mAction = event.mAction;
961 mAction = action;
970 return mAction;
1046 mAction = 0;
1067 mAction = parcel.readInt();
1123 parcel.writeInt(mAction);
1182 builder.append("; Action: ").append(mAction);
/frameworks/base/media/java/android/media/session/
H A DPlaybackState.java570 private final String mAction; field in class:PlaybackState.CustomAction
579 mAction = action;
586 mAction = in.readString();
594 dest.writeString(mAction);
625 return mAction;
669 private final String mAction; field in class:PlaybackState.CustomAction.Builder
697 mAction = action;
721 return new CustomAction(mAction, mName, mIcon, mExtras);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkMonitor.java406 private final String mAction; field in class:NetworkMonitor.CustomIntentReceiver
409 mAction = action + "_" + mNetworkAgentInfo.network.netId + "_" + token;
410 mContext.registerReceiver(this, new IntentFilter(mAction));
413 return PendingIntent.getBroadcast(mContext, 0, new Intent(mAction), 0);
417 if (intent.getAction().equals(mAction)) sendMessage(mMessage);
/frameworks/native/include/input/
H A DInput.h291 inline int32_t getAction() const { return mAction; }
326 int32_t mAction; member in class:android::KeyEvent
345 inline int32_t getAction() const { return mAction; }
347 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; }
350 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
354 inline void setAction(int32_t action) { mAction = action; }
558 return isTouchEvent(mSource, mAction);
574 int32_t mAction; member in class:android::MotionEvent
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmMmiCode.java122 String mAction; // One of ACTION_* field in class:GsmMmiCode
195 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION));
610 return mAction != null && mAction.equals(ACTION_ACTIVATE);
614 return mAction != null && mAction.equals(ACTION_DEACTIVATE);
618 return mAction != null && mAction.equals(ACTION_INTERROGATE);
622 return mAction != null && mAction
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneMmiCode.java170 private String mAction; // One of ACTION_* field in class:ImsPhoneMmiCode
242 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION));
635 return mAction != null && mAction.equals(ACTION_ACTIVATE);
639 return mAction != null && mAction.equals(ACTION_DEACTIVATE);
643 return mAction != null && mAction.equals(ACTION_INTERROGATE);
647 return mAction != null && mAction
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java37 private final Object mAction; field in class:AccessibilityNodeInfoCompat.AccessibilityActionCompat
40 mAction = action;
49 return AccessibilityNodeInfoCompatApi21.AccessibilityAction.getId(mAction);
59 return AccessibilityNodeInfoCompatApi21.AccessibilityAction.getLabel(mAction);
/frameworks/base/core/java/android/content/
H A DIntent.java3871 private String mAction; field in class:Intent
3896 this.mAction = o.mAction;
3926 this.mAction = o.mAction;
4421 if (intent.mAction == null) {
4423 intent.mAction = ACTION_VIEW;
4444 return mAction;
5339 mAction = action != null ? action.intern() : null;
6694 if (other.mAction !
[all...]

Completed in 479 milliseconds