Searched defs:actionCode (Results 1 - 8 of 8) sorted by path

/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp265 virtual void onError(status_t err, enum ActionCode actionCode) override;
318 void CodecCallback::onError(status_t err, enum ActionCode actionCode) { argument
322 notify->setInt32("actionCode", actionCode);
1397 int32_t err, actionCode; local
1399 CHECK(msg->findInt32("actionCode", &actionCode));
1401 ALOGE("Codec reported err %#x, actionCode %d, while in state %d",
1402 err, actionCode, mState);
1419 setState(actionCode
3044 onError(status_t err, int32_t actionCode, const char *detail) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java569 public boolean performEditorAction(int actionCode) { argument
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java2324 public void onEditorAction(int actionCode) { argument
2325 super.onEditorAction(actionCode);
2326 if (actionCode == EditorInfo.IME_ACTION_DONE) {
H A DTextView.java5901 * @param actionCode The code of the action being performed.
5905 public void onEditorAction(int actionCode) { argument
5910 actionCode, null)) {
5920 if (actionCode == EditorInfo.IME_ACTION_NEXT) {
5930 } else if (actionCode == EditorInfo.IME_ACTION_PREVIOUS) {
5940 } else if (actionCode == EditorInfo.IME_ACTION_DONE) {
/frameworks/base/core/java/com/android/internal/view/
H A DInputConnectionWrapper.java362 public boolean performEditorAction(int actionCode) { argument
364 mIInputContext.performEditorAction(actionCode);
/frameworks/base/core/java/com/android/internal/widget/
H A DEditableInputConnection.java136 public boolean performEditorAction(int actionCode) { argument
137 if (DEBUG) Log.v(TAG, "performEditorAction " + actionCode);
138 mTextView.onEditorAction(actionCode);
/frameworks/base/media/java/android/media/
H A DMediaCodec.java2115 CodecException(int errorCode, int actionCode, @Nullable String detailMessage) { argument
2118 mActionCode = actionCode;
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp644 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) {
656 switch (actionCode) {
658 actionCode = gCodecActionCodes.codecActionTransient;
661 actionCode = gCodecActionCodes.codecActionRecoverable;
664 actionCode = 0; // everything else is fatal
680 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get());
730 int32_t err, actionCode; local
732 CHECK(msg->findInt32("actionCode", &actionCode));
735 obj = (jobject)createCodecException(env, err, actionCode);
643 createCodecException( JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) argument
849 throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) argument
[all...]

Completed in 196 milliseconds