/frameworks/base/core/java/com/android/internal/widget/ |
D | EditableInputConnection.java | 136 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/ |
D | NdkMediaCodec.h | 114 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/ |
D | BenchmarkCommon.cpp | 57 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()
|
D | BenchmarkCommon.h | 128 void OnErrorCB(AMediaCodec *codec, void * /* userdata */, media_status_t err, int32_t actionCode,
|
/frameworks/av/media/ndk/ |
D | NdkMediaCodec.cpp | 247 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/ |
D | android_media_MediaCodec.cpp | 776 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/ |
D | IInputContext.aidl | 58 void performEditorAction(int actionCode); in performEditorAction() argument
|
D | InputConnectionWrapper.java | 429 public boolean performEditorAction(int actionCode) { in performEditorAction() argument 431 mIInputContext.performEditorAction(actionCode); in performEditorAction()
|
/frameworks/av/media/libstagefright/ |
D | MediaCodec.cpp | 308 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/ |
D | CodecBase.h | 92 virtual void onError(status_t err, enum ActionCode actionCode) = 0;
|
D | MediaCodec.h | 428 void onError(status_t err, int32_t actionCode, const char *detail = NULL);
|
/frameworks/av/media/codec2/sfplugin/ |
D | CCodecBufferChannel.h | 44 virtual void onError(status_t err, enum ActionCode actionCode) = 0;
|
D | CCodec.cpp | 544 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/ |
D | NdkWrapper.h | 216 int32_t actionCode,
|
/frameworks/base/media/java/android/media/ |
D | MediaCodec.java | 2207 CodecException(int errorCode, int actionCode, @Nullable String detailMessage) { in CodecException() argument 2210 mActionCode = actionCode; in CodecException()
|
/frameworks/av/services/camera/libcameraservice/api2/ |
D | HeicCompositeStream.cpp | 1732 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/ |
D | NumberPicker.java | 2450 public void onEditorAction(int actionCode) { in onEditorAction() argument 2451 super.onEditorAction(actionCode); in onEditorAction() 2452 if (actionCode == EditorInfo.IME_ACTION_DONE) { in onEditorAction()
|
D | TextView.java | 7016 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/ |
D | BaseInputConnection.java | 569 public boolean performEditorAction(int actionCode) { in performEditorAction() argument
|