Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DDragEvent.java127 int mAction; field in DragEvent
257 mAction = action; in init()
295 return obtain(source.mAction, source.mX, source.mY, source.mLocalState, in obtain()
313 return mAction; in getAction()
442 + " action=" + mAction + " @ (" + mX + ", " + mY + ") desc=" + mClipDescription in toString()
464 dest.writeInt(mAction); in writeToParcel()
489 event.mAction = in.readInt();
DKeyEvent.java1183 private int mAction; field in KeyEvent
1263 mAction = action; in KeyEvent()
1286 mAction = action; in KeyEvent()
1310 mAction = action; in KeyEvent()
1338 mAction = action; in KeyEvent()
1368 mAction = action; in KeyEvent()
1400 mAction = action; in KeyEvent()
1426 mAction = ACTION_MULTIPLE; in KeyEvent()
1440 mAction = origEvent.mAction; in KeyEvent()
1466 mAction = origEvent.mAction; in KeyEvent()
[all …]
DViewGroup.java1239 switch (event.mAction) { in dispatchDragEvent()
1310 final int action = event.mAction; in dispatchDragEvent()
1314 event.mAction = DragEvent.ACTION_DRAG_EXITED; in dispatchDragEvent()
1323 event.mAction = DragEvent.ACTION_DRAG_ENTERED; in dispatchDragEvent()
1328 event.mAction = action; // restore the event's original state in dispatchDragEvent()
DViewRootImpl.java5138 final int what = event.mAction; in handleDragEvent()
/frameworks/support/v4/java/android/support/v4/media/session/
DPlaybackStateCompat.java414 private final String mAction; field in PlaybackStateCompat.CustomAction
423 mAction = action; in CustomAction()
430 mAction = in.readString(); in CustomAction()
438 dest.writeString(mAction); in writeToParcel()
469 return mAction; in getAction()
516 private final String mAction; field in PlaybackStateCompat.CustomAction.Builder
547 mAction = action; in Builder()
573 return new CustomAction(mAction, mName, mIcon, mExtras); in build()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DActionPresenterSelector.java40 Action mAction; field in ActionPresenterSelector.ActionViewHolder
63 vh.mAction = action; in onBindViewHolder()
69 ((ActionViewHolder) viewHolder).mAction = null; in onUnbindViewHolder()
86 vh.mAction = action; in onBindViewHolder()
121 vh.mAction = null; in onUnbindViewHolder()
/frameworks/base/services/core/java/com/android/server/
DServiceWatcher.java56 private final String mAction; field in ServiceWatcher
103 mAction = action; in ServiceWatcher()
163 Intent intent = new Intent(mAction); in bindBestPackageLocked()
181 Log.w(mTag, packageName + " resolves service " + mAction in bindBestPackageLocked()
207 Log.d(mTag, String.format("bindBestPackage for %s : %s found %d, %s", mAction, in bindBestPackageLocked()
214 if (D) Log.d(mTag, "Unable to query intent services for action: " + mAction); in bindBestPackageLocked()
237 Intent intent = new Intent(mAction); in bindToPackageLocked()
/frameworks/native/include/input/
DInput.h291 inline int32_t getAction() const { return mAction; } in getAction()
326 int32_t mAction;
345 inline int32_t getAction() const { return mAction; } in getAction()
347 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; } in getActionMasked()
350 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) in getActionIndex()
354 inline void setAction(int32_t action) { mAction = action; } in setAction()
558 return isTouchEvent(mSource, mAction); in isTouchEvent()
574 int32_t mAction;
/frameworks/base/media/java/android/media/session/
DPlaybackState.java584 private final String mAction;
593 mAction = action;
600 mAction = in.readString();
608 dest.writeString(mAction);
639 return mAction;
683 private final String mAction;
711 mAction = action;
735 return new CustomAction(mAction, mName, mIcon, mExtras);
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityEvent.java745 int mAction; field in AccessibilityEvent
765 mAction = event.mAction; in init()
961 mAction = action; in setAction()
970 return mAction; in getAction()
1046 mAction = 0; in clear()
1067 mAction = parcel.readInt(); in initFromParcel()
1123 parcel.writeInt(mAction); in writeToParcel()
1182 builder.append("; Action: ").append(mAction); in toString()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmMmiCode.java123 String mAction; // One of ACTION_* field in GsmMmiCode
198 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION)); in newFromDialString()
289 mAction = getActionStringFromReqType(ssData.requestType); in parseSsData()
290 Rlog.d(LOG_TAG, "parseSsData msc = " + mSc + ", action = " + mAction + ", ex = " + ex); in parseSsData()
743 return mAction != null && mAction.equals(ACTION_ACTIVATE); in isActivate()
747 return mAction != null && mAction.equals(ACTION_DEACTIVATE); in isDeactivate()
751 return mAction != null && mAction.equals(ACTION_INTERROGATE); in isInterrogate()
755 return mAction != null && mAction.equals(ACTION_REGISTER); in isRegister()
759 return mAction != null && mAction.equals(ACTION_ERASURE); in isErasure()
894 mAction = ACTION_REGISTER; in processCode()
[all …]
/frameworks/native/libs/input/
DInput.cpp66 mAction = action; in initialize()
78 mAction = from.mAction; in initialize()
233 mAction = action; in initialize()
252 mAction = other->mAction; in copyFrom()
430 mAction = parcel->readInt32(); in readFromParcel()
477 parcel->writeInt32(mAction); in writeToParcel()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaMmiCode.java65 String mAction; // ACTION_REGISTER field in CdmaMmiCode
118 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION)); in newFromDialString()
200 return mAction != null && mAction.equals(ACTION_REGISTER); in isRegister()
259 throw new RuntimeException ("Ivalid register/action=" + mAction); in processCode()
/frameworks/base/core/jni/
Dandroid_view_KeyEvent.cpp41 jfieldID mAction; member
81 jint action = env->GetIntField(eventObj, gKeyEventClassInfo.mAction); in android_view_KeyEvent_toNative()
158 GET_FIELD_ID(gKeyEventClassInfo.mAction, gKeyEventClassInfo.clazz, in register_android_view_KeyEvent()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneMmiCode.java170 private String mAction; // One of ACTION_* field in ImsPhoneMmiCode
242 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION)); in newFromDialString()
635 return mAction != null && mAction.equals(ACTION_ACTIVATE); in isActivate()
639 return mAction != null && mAction.equals(ACTION_DEACTIVATE); in isDeactivate()
643 return mAction != null && mAction.equals(ACTION_INTERROGATE); in isInterrogate()
647 return mAction != null && mAction.equals(ACTION_REGISTER); in isRegister()
651 return mAction != null && mAction.equals(ACTION_ERASURE); in isErasure()
1537 if (mAction != null) sb.append(" action=" + mAction); in toString()
/frameworks/base/core/java/android/content/
DIntent.java4035 private String mAction; field in Intent
4060 this.mAction = o.mAction; in Intent()
4090 this.mAction = o.mAction; in Intent()
4669 if (intent.mAction == null) {
4671 intent.mAction = ACTION_VIEW;
4692 return mAction; in getAction()
5587 mAction = action != null ? action.intern() : null; in setAction()
6942 if (other.mAction != null in fillIn()
6943 && (mAction == null || (flags&FILL_IN_ACTION) != 0)) { in fillIn()
6944 mAction = other.mAction; in fillIn()
[all …]
/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkMonitor.java511 private final String mAction; field in NetworkMonitor.CustomIntentReceiver
515 mAction = action + "_" + mNetworkAgentInfo.network.netId + "_" + token; in CustomIntentReceiver()
516 mContext.registerReceiver(this, new IntentFilter(mAction)); in CustomIntentReceiver()
519 return PendingIntent.getBroadcast(mContext, 0, new Intent(mAction), 0); in getPendingIntent()
523 if (intent.getAction().equals(mAction)) sendMessage(obtainMessage(mWhat, mToken)); in onReceive()
/frameworks/wilhelm/tests/sandbox/
Dmonkey.c192 Action_pt mAction; member
285 State_t nextState = (*transitionTable[i].mAction)(&player); in main()
/frameworks/support/v4/java/android/support/v4/view/accessibility/
DAccessibilityNodeInfoCompat.java37 private final Object mAction; field in AccessibilityNodeInfoCompat.AccessibilityActionCompat
50 mAction = action; in AccessibilityActionCompat()
59 return IMPL.getAccessibilityActionId(mAction); in getId()
69 return IMPL.getAccessibilityActionLabel(mAction); in getLabel()
1820 IMPL.addAction(mInfo, action.mAction); in addAction()