Home
last modified time | relevance | path

Searched refs:actionCode (Results 1 – 19 of 19) 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/ndk/include/media/
DNdkMediaCodec.h114 int32_t actionCode,
474 bool AMediaCodecActionCode_isRecoverable(int32_t actionCode) __INTRODUCED_IN(28);
483 bool AMediaCodecActionCode_isTransient(int32_t actionCode) __INTRODUCED_IN(28);
/frameworks/av/media/tests/benchmark/src/native/common/
DBenchmarkCommon.cpp57 void OnErrorCB(AMediaCodec *codec, void *userdata, media_status_t err, int32_t actionCode, in OnErrorCB() argument
60 ALOGE("OnErrorCB: err(%d), actionCode(%d), detail(%s)", err, actionCode, detail); in OnErrorCB()
DBenchmarkCommon.h128 void OnErrorCB(AMediaCodec *codec, void * /* userdata */, media_status_t err, int32_t actionCode,
/frameworks/av/media/ndk/
DNdkMediaCodec.cpp247 int32_t actionCode; in onMessageReceived() local
253 if (!msg->findInt32("actionCode", &actionCode)) { in onMessageReceived()
259 err, actionCode, detail.c_str()); in onMessageReceived()
268 actionCode, in onMessageReceived()
793 bool AMediaCodecActionCode_isRecoverable(int32_t actionCode) { in AMediaCodecActionCode_isRecoverable() argument
794 return (actionCode == ACTION_CODE_RECOVERABLE); in AMediaCodecActionCode_isRecoverable()
798 bool AMediaCodecActionCode_isTransient(int32_t actionCode) { in AMediaCodecActionCode_isTransient() argument
799 return (actionCode == ACTION_CODE_TRANSIENT); in AMediaCodecActionCode_isTransient()
/frameworks/base/media/jni/
Dandroid_media_MediaCodec.cpp776 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) { in createCodecException() argument
788 switch (actionCode) { in createCodecException()
790 actionCode = gCodecActionCodes.codecActionTransient; in createCodecException()
793 actionCode = gCodecActionCodes.codecActionRecoverable; in createCodecException()
796 actionCode = 0; // everything else is fatal in createCodecException()
812 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get()); in createCodecException()
862 int32_t err, actionCode; in handleCallback() local
864 CHECK(msg->findInt32("actionCode", &actionCode)); in handleCallback()
867 obj = (jobject)createCodecException(env, err, actionCode); in handleCallback()
983 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.java429 public boolean performEditorAction(int actionCode) { in performEditorAction() argument
431 mIInputContext.performEditorAction(actionCode); in performEditorAction()
/frameworks/av/media/libstagefright/
DMediaCodec.cpp308 virtual void onError(status_t err, enum ActionCode actionCode) override;
361 void CodecCallback::onError(status_t err, enum ActionCode actionCode) { in onError() argument
365 notify->setInt32("actionCode", actionCode); in onError()
1872 int32_t err, actionCode; in onMessageReceived() local
1874 CHECK(msg->findInt32("actionCode", &actionCode)); in onMessageReceived()
1877 err, actionCode, mState); in onMessageReceived()
1894 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived()
1901 setState(actionCode == ACTION_CODE_FATAL ? in onMessageReceived()
1908 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived()
1915 setState(actionCode == ACTION_CODE_FATAL ? in onMessageReceived()
[all …]
/frameworks/av/media/libstagefright/include/media/stagefright/
DCodecBase.h92 virtual void onError(status_t err, enum ActionCode actionCode) = 0;
DMediaCodec.h428 void onError(status_t err, int32_t actionCode, const char *detail = NULL);
/frameworks/av/media/codec2/sfplugin/
DCCodecBufferChannel.h44 virtual void onError(status_t err, enum ActionCode actionCode) = 0;
DCCodec.cpp544 void onError(status_t err, enum ActionCode actionCode) override { in onError() argument
545 mCodec->mCallback->onError(err, actionCode); in onError()
/frameworks/av/media/libmedia/include/media/
DNdkWrapper.h216 int32_t actionCode,
/frameworks/base/media/java/android/media/
DMediaCodec.java2207 CodecException(int errorCode, int actionCode, @Nullable String detailMessage) { in CodecException() argument
2210 mActionCode = actionCode; in CodecException()
/frameworks/av/services/camera/libcameraservice/api2/
DHeicCompositeStream.cpp1732 int32_t actionCode; in onMessageReceived() local
1738 if (!msg->findInt32("action", &actionCode)) { in onMessageReceived()
1744 err, actionCode, detail.c_str()); in onMessageReceived()
/frameworks/base/core/java/android/widget/
DNumberPicker.java2450 public void onEditorAction(int actionCode) { in onEditorAction() argument
2451 super.onEditorAction(actionCode); in onEditorAction()
2452 if (actionCode == EditorInfo.IME_ACTION_DONE) { in onEditorAction()
DTextView.java7016 public void onEditorAction(int actionCode) { in onEditorAction() argument
7021 actionCode, null)) { in onEditorAction()
7031 if (actionCode == EditorInfo.IME_ACTION_NEXT) { in onEditorAction()
7041 } else if (actionCode == EditorInfo.IME_ACTION_PREVIOUS) { in onEditorAction()
7051 } else if (actionCode == EditorInfo.IME_ACTION_DONE) { in onEditorAction()
/frameworks/base/core/java/android/view/inputmethod/
DBaseInputConnection.java569 public boolean performEditorAction(int actionCode) { in performEditorAction() argument