Home
last modified time | relevance | path

Searched refs:actionCode (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DEditableInputConnection.java136 public boolean performEditorAction(int actionCode) { in performEditorAction() argument
137 if (DEBUG) Log.v(TAG, "performEditorAction " + actionCode); in performEditorAction()
138 mTextView.onEditorAction(actionCode); in performEditorAction()
/frameworks/av/media/libstagefright/
DMediaCodec.cpp273 virtual void onError(status_t err, enum ActionCode actionCode) override;
326 void CodecCallback::onError(status_t err, enum ActionCode actionCode) { in onError() argument
330 notify->setInt32("actionCode", actionCode); in onError()
1419 int32_t err, actionCode; in onMessageReceived() local
1421 CHECK(msg->findInt32("actionCode", &actionCode)); in onMessageReceived()
1424 err, actionCode, mState); in onMessageReceived()
1441 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived()
1447 setState(actionCode == ACTION_CODE_FATAL ? in onMessageReceived()
1454 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived()
1460 setState(actionCode == ACTION_CODE_FATAL ? in onMessageReceived()
[all …]
/frameworks/base/media/jni/
Dandroid_media_MediaCodec.cpp645 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) { in createCodecException() argument
657 switch (actionCode) { in createCodecException()
659 actionCode = gCodecActionCodes.codecActionTransient; in createCodecException()
662 actionCode = gCodecActionCodes.codecActionRecoverable; in createCodecException()
665 actionCode = 0; // everything else is fatal in createCodecException()
681 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get()); in createCodecException()
731 int32_t err, actionCode; in handleCallback() local
733 CHECK(msg->findInt32("actionCode", &actionCode)); in handleCallback()
736 obj = (jobject)createCodecException(env, err, actionCode); in handleCallback()
850 static void throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) { in throwCodecException() argument
[all …]
/frameworks/base/core/java/com/android/internal/view/
DIInputContext.aidl58 void performEditorAction(int actionCode); in performEditorAction() argument
DInputConnectionWrapper.java362 public boolean performEditorAction(int actionCode) { in performEditorAction() argument
364 mIInputContext.performEditorAction(actionCode); in performEditorAction()
/frameworks/av/media/libstagefright/include/media/stagefright/
DCodecBase.h92 virtual void onError(status_t err, enum ActionCode actionCode) = 0;
DMediaCodec.h412 void onError(status_t err, int32_t actionCode, const char *detail = NULL);
/frameworks/base/media/java/android/media/
DMediaCodec.java2123 CodecException(int errorCode, int actionCode, @Nullable String detailMessage) { in CodecException() argument
2126 mActionCode = actionCode; in CodecException()
/frameworks/base/core/java/android/widget/
DNumberPicker.java2351 public void onEditorAction(int actionCode) { in onEditorAction() argument
2352 super.onEditorAction(actionCode); in onEditorAction()
2353 if (actionCode == EditorInfo.IME_ACTION_DONE) { in onEditorAction()
DTextView.java5924 public void onEditorAction(int actionCode) {
5929 actionCode, null)) {
5939 if (actionCode == EditorInfo.IME_ACTION_NEXT) {
5949 } else if (actionCode == EditorInfo.IME_ACTION_PREVIOUS) {
5959 } else if (actionCode == EditorInfo.IME_ACTION_DONE) {
/frameworks/base/core/java/android/view/inputmethod/
DBaseInputConnection.java569 public boolean performEditorAction(int actionCode) { in performEditorAction() argument