Searched refs:mAction (Results 1 - 19 of 19) sorted by relevance

/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...]
H A DViewGroup.java1239 switch (event.mAction) {
1310 final int action = event.mAction;
1314 event.mAction = DragEvent.ACTION_DRAG_EXITED;
1323 event.mAction = DragEvent.ACTION_DRAG_ENTERED;
1328 event.mAction = action; // restore the event's original state
H A DViewRootImpl.java5138 final int what = event.mAction;
/frameworks/support/v4/java/android/support/v4/media/session/
H A DPlaybackStateCompat.java414 private final String mAction; field in class:PlaybackStateCompat.CustomAction
423 mAction = action;
430 mAction = in.readString();
438 dest.writeString(mAction);
469 return mAction;
516 private final String mAction; field in class:PlaybackStateCompat.CustomAction.Builder
547 mAction = action;
573 return new CustomAction(mAction, mName, mIcon, mExtras);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DActionPresenterSelector.java40 Action mAction; field in class:ActionPresenterSelector.ActionViewHolder
63 vh.mAction = action;
69 ((ActionViewHolder) viewHolder).mAction = null;
86 vh.mAction = action;
121 vh.mAction = null;
/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/base/media/java/android/media/session/
H A DPlaybackState.java584 private final String mAction; field in class:PlaybackState.CustomAction
593 mAction = action;
600 mAction = in.readString();
608 dest.writeString(mAction);
639 return mAction;
683 private final String mAction; field in class:PlaybackState.CustomAction.Builder
711 mAction = action;
735 return new CustomAction(mAction, mName, mIcon, mExtras);
/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/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/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/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmMmiCode.java123 String mAction; // One of ACTION_* field in class:GsmMmiCode
198 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION));
289 mAction = getActionStringFromReqType(ssData.requestType);
290 Rlog.d(LOG_TAG, "parseSsData msc = " + mSc + ", action = " + mAction + ", ex = " + ex);
743 return mAction != null && mAction.equals(ACTION_ACTIVATE);
747 return mAction != null && mAction.equals(ACTION_DEACTIVATE);
751 return mAction != null && mAction
[all...]
/frameworks/native/libs/input/
H A DInput.cpp66 mAction = action;
78 mAction = from.mAction;
233 mAction = action;
252 mAction = other->mAction;
430 mAction = parcel->readInt32();
477 parcel->writeInt32(mAction);
/frameworks/base/core/jni/
H A Dandroid_view_KeyEvent.cpp41 jfieldID mAction; member in struct:android::__anon863
81 jint action = env->GetIntField(eventObj, gKeyEventClassInfo.mAction);
158 GET_FIELD_ID(gKeyEventClassInfo.mAction, gKeyEventClassInfo.clazz,
159 "mAction", "I");
/frameworks/base/core/java/android/content/
H A DIntent.java4035 private String mAction; field in class:Intent
4060 this.mAction = o.mAction;
4090 this.mAction = o.mAction;
4669 if (intent.mAction == null) {
4671 intent.mAction = ACTION_VIEW;
4692 return mAction;
5587 mAction = action != null ? action.intern() : null;
6942 if (other.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/base/services/core/java/com/android/server/connectivity/
H A DNetworkMonitor.java511 private final String mAction; field in class:NetworkMonitor.CustomIntentReceiver
515 mAction = action + "_" + mNetworkAgentInfo.network.netId + "_" + token;
516 mContext.registerReceiver(this, new IntentFilter(mAction));
519 return PendingIntent.getBroadcast(mContext, 0, new Intent(mAction), 0);
523 if (intent.getAction().equals(mAction)) sendMessage(obtainMessage(mWhat, mToken));
/frameworks/wilhelm/tests/sandbox/
H A Dmonkey.c192 Action_pt mAction; member in struct:__anon1672
285 State_t nextState = (*transitionTable[i].mAction)(&player);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java37 private final Object mAction; field in class:AccessibilityNodeInfoCompat.AccessibilityActionCompat
50 mAction = action;
59 return IMPL.getAccessibilityActionId(mAction);
69 return IMPL.getAccessibilityActionLabel(mAction);
1820 IMPL.addAction(mInfo, action.mAction);

Completed in 654 milliseconds