/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/core/java/com/android/internal/view/ |
D | IInputContext.aidl | 60 void performEditorAction(int actionCode); in performEditorAction() argument
|
D | InputConnectionWrapper.java | 248 public boolean performEditorAction(int actionCode) { in performEditorAction() argument 250 mIInputContext.performEditorAction(actionCode); in performEditorAction()
|
/frameworks/av/media/libstagefright/ |
D | MediaCodec.cpp | 406 virtual void onError(status_t err, enum ActionCode actionCode) override; 459 void CodecCallback::onError(status_t err, enum ActionCode actionCode) { in onError() argument 463 notify->setInt32("actionCode", actionCode); in onError() 2092 int32_t err, actionCode; in onMessageReceived() local 2094 CHECK(msg->findInt32("actionCode", &actionCode)); in onMessageReceived() 2097 err, actionCode, mState); in onMessageReceived() 2114 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived() 2121 setState(actionCode == ACTION_CODE_FATAL ? in onMessageReceived() 2128 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived() 2135 setState(actionCode == ACTION_CODE_FATAL ? in onMessageReceived() [all …]
|
/frameworks/base/media/jni/ |
D | android_media_MediaCodec.cpp | 926 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) { in createCodecException() argument 938 switch (actionCode) { in createCodecException() 940 actionCode = gCodecActionCodes.codecActionTransient; in createCodecException() 943 actionCode = gCodecActionCodes.codecActionRecoverable; in createCodecException() 946 actionCode = 0; // everything else is fatal in createCodecException() 962 return (jthrowable)env->NewObject(clazz.get(), ctor, err, actionCode, msgObj.get()); in createCodecException() 1012 int32_t err, actionCode; in handleCallback() local 1014 CHECK(msg->findInt32("actionCode", &actionCode)); in handleCallback() 1017 obj = (jobject)createCodecException(env, err, actionCode); in handleCallback() 1148 static void throwCodecException(JNIEnv *env, status_t err, int32_t actionCode, const char *msg) { in throwCodecException() argument [all …]
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | CodecBase.h | 103 virtual void onError(status_t err, enum ActionCode actionCode) = 0;
|
D | MediaCodec.h | 473 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 | 557 void onError(status_t err, enum ActionCode actionCode) override { in onError() argument 558 mCodec->mCallback->onError(err, actionCode); in onError()
|
/frameworks/av/media/libmedia/include/media/ |
D | NdkWrapper.h | 216 int32_t actionCode,
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiMetrics.java | 6100 int actionCode; 6103 actionCode = UserReactionToApprovalUiEvent.ACTION_ALLOWED; 6106 actionCode = UserReactionToApprovalUiEvent.ACTION_DISALLOWED; 6109 actionCode = UserReactionToApprovalUiEvent.ACTION_DISMISS; 6112 actionCode = UserReactionToApprovalUiEvent.ACTION_UNKNOWN; 6115 event.userAction = actionCode; 6125 int actionCode; 6128 actionCode = UserReactionToApprovalUiEvent.ACTION_ALLOWED; 6131 actionCode = UserReactionToApprovalUiEvent.ACTION_DISALLOWED; 6134 actionCode = UserReactionToApprovalUiEvent.ACTION_DISMISS; [all …]
|
/frameworks/base/core/java/android/widget/ |
D | NumberPicker.java | 2451 public void onEditorAction(int actionCode) { in onEditorAction() argument 2452 super.onEditorAction(actionCode); in onEditorAction() 2453 if (actionCode == EditorInfo.IME_ACTION_DONE) { in onEditorAction()
|
D | TextView.java | 7054 public void onEditorAction(int actionCode) { in onEditorAction() argument 7059 actionCode, null)) { in onEditorAction() 7069 if (actionCode == EditorInfo.IME_ACTION_NEXT) { in onEditorAction() 7079 } else if (actionCode == EditorInfo.IME_ACTION_PREVIOUS) { in onEditorAction() 7089 } else if (actionCode == EditorInfo.IME_ACTION_DONE) { in onEditorAction()
|
/frameworks/av/services/camera/libcameraservice/api2/ |
D | HeicCompositeStream.cpp | 1879 int32_t actionCode; in onMessageReceived() local 1885 if (!msg->findInt32("action", &actionCode)) { in onMessageReceived() 1891 err, actionCode, detail.c_str()); in onMessageReceived()
|
/frameworks/base/core/java/android/view/inputmethod/ |
D | BaseInputConnection.java | 586 public boolean performEditorAction(int actionCode) { in performEditorAction() argument
|
/frameworks/base/media/java/android/media/ |
D | MediaCodec.java | 2308 CodecException(int errorCode, int actionCode, @Nullable String detailMessage) { in CodecException() argument 2311 mActionCode = actionCode; in CodecException()
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |