/aosp12/packages/apps/Settings/tests/anomaly-tester/src/com/android/settings/anomaly/tester/utils/ |
H A D | AnomalyActions.java | 43 public static void doAction(Context ctx, String actionCode, long durationMs) { in doAction() argument 44 if (actionCode == null) { in doAction() 48 switch (actionCode) { in doAction()
|
/aosp12/frameworks/av/media/ndk/include/media/ |
H A D | NdkMediaCodec.h | 114 int32_t actionCode, 466 bool AMediaCodecActionCode_isRecoverable(int32_t actionCode) __INTRODUCED_IN(28); 475 bool AMediaCodecActionCode_isTransient(int32_t actionCode) __INTRODUCED_IN(28);
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/list/ |
H A D | ContactsRequest.java | 150 public void setActionCode(int actionCode) { in setActionCode() argument 151 mActionCode = actionCode; in setActionCode()
|
H A D | DefaultContactBrowseListFragment.java | 709 final int actionCode = mContactsRequest.getActionCode(); in configureFragmentForRequest() local 711 switch (actionCode) { in configureFragmentForRequest()
|
/aosp12/frameworks/av/media/ndk/ |
H A D | NdkMediaCodec.cpp | 251 int32_t actionCode; in onMessageReceived() local 257 if (!msg->findInt32("actionCode", &actionCode)) { in onMessageReceived() 263 err, actionCode, detail.c_str()); in onMessageReceived() 272 actionCode, in onMessageReceived() 833 bool AMediaCodecActionCode_isRecoverable(int32_t actionCode) { in AMediaCodecActionCode_isRecoverable() argument 834 return (actionCode == ACTION_CODE_RECOVERABLE); in AMediaCodecActionCode_isRecoverable() 838 bool AMediaCodecActionCode_isTransient(int32_t actionCode) { in AMediaCodecActionCode_isTransient() argument 839 return (actionCode == ACTION_CODE_TRANSIENT); in AMediaCodecActionCode_isTransient()
|
/aosp12/frameworks/base/core/java/com/android/internal/widget/ |
H A D | EditableInputConnection.java | 157 public boolean performEditorAction(int actionCode) { in performEditorAction() argument 158 if (DEBUG) Log.v(TAG, "performEditorAction " + actionCode); in performEditorAction() 159 mTextView.onEditorAction(actionCode); in performEditorAction()
|
/aosp12/frameworks/av/media/tests/benchmark/src/native/common/ |
H A 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()
|
H A D | BenchmarkCommon.h | 128 void OnErrorCB(AMediaCodec *codec, void * /* userdata */, media_status_t err, int32_t actionCode,
|
/aosp12/packages/services/Telephony/src/com/android/phone/ |
H A D | CarrierXmlParser.java | 188 public String actionCode; field in CarrierXmlParser.SsEntry 206 + ", actionCode:" + actionCode in toString() 215 String result = actionCode + serviceCode; in getCommandStructure() 238 String result = actionCode + serviceCode; in makeCommand() 548 entry.actionCode = readText(parser); in readCommandEntry()
|
/aosp12/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
H A D | ContactAggregator.java | 145 final int actionCode; in aggregateContact() local 153 actionCode = KEEP_SEPARATE; in aggregateContact() 155 actionCode = canJoinIntoContact(db, rawContactId, in aggregateContact() 158 if (actionCode == KEEP_SEPARATE) { in aggregateContact() 160 } else if (actionCode == RE_AGGREGATE) { in aggregateContact()
|
/aosp12/frameworks/base/core/java/com/android/internal/view/ |
H A D | IInputContext.aidl | 61 void performEditorAction(int actionCode); in performEditorAction() argument
|
H A D | InputConnectionWrapper.java | 319 public boolean performEditorAction(int actionCode) { in performEditorAction() argument 321 mIInputContext.performEditorAction(actionCode); in performEditorAction()
|
/aosp12/frameworks/av/media/libstagefright/ |
H A D | MediaCodec.cpp | 567 notify->setInt32("actionCode", actionCode); in onError() 2976 int32_t err, actionCode; in onMessageReceived() local 3000 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived() 3014 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived() 3065 if (actionCode == ACTION_CODE_FATAL) { in onMessageReceived() 3091 onError(err, actionCode); in onMessageReceived() 3093 switch (actionCode) { in onMessageReceived() 3120 actionCode = ACTION_CODE_FATAL; in onMessageReceived() 3123 onError(err, actionCode); in onMessageReceived() 3125 switch (actionCode) { in onMessageReceived() [all …]
|
/aosp12/frameworks/base/media/jni/ |
H A D | android_media_MediaCodec.cpp | 1029 JNIEnv *env, status_t err, int32_t actionCode, const char *msg = NULL) { in createCodecException() argument 1041 switch (actionCode) { in createCodecException() 1043 actionCode = gCodecActionCodes.codecActionTransient; in createCodecException() 1046 actionCode = gCodecActionCodes.codecActionRecoverable; in createCodecException() 1049 actionCode = 0; // everything else is fatal in createCodecException() 1115 int32_t err, actionCode; in handleCallback() local 1117 CHECK(msg->findInt32("actionCode", &actionCode)); in handleCallback() 1120 obj = (jobject)createCodecException(env, err, actionCode); in handleCallback() 1280 jthrowable exception = createCodecException(env, err, actionCode, msg); in throwCodecException() 1353 JNIEnv *env, status_t err, int32_t actionCode = ACTION_CODE_FATAL, in throwExceptionAsNecessary() argument [all …]
|
/aosp12/frameworks/av/media/libstagefright/include/media/stagefright/ |
H A D | CodecBase.h | 108 virtual void onError(status_t err, enum ActionCode actionCode) = 0;
|
H A D | MediaCodec.h | 549 void onError(status_t err, int32_t actionCode, const char *detail = NULL);
|
/aosp12/frameworks/av/media/libmediatranscoding/transcoder/ |
H A D | VideoTrackTranscoder.cpp | 160 int32_t actionCode, const char* detail) { in onAsyncError() 162 << error << ", action " << actionCode << ", detail " << detail; in onAsyncError()
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/activities/ |
H A D | ContactSelectionActivity.java | 205 int actionCode = mRequest.getActionCode(); in configureActivityTitle() local 206 switch (actionCode) { in configureActivityTitle()
|
/aosp12/frameworks/av/media/codec2/sfplugin/ |
H A D | CCodecBufferChannel.h | 45 virtual void onError(status_t err, enum ActionCode actionCode) = 0;
|
/aosp12/frameworks/av/media/libmedia/include/media/ |
H A D | NdkWrapper.h | 216 int32_t actionCode,
|
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/ |
H A D | WifiMetrics.java | 7276 int actionCode; 7279 actionCode = UserReactionToApprovalUiEvent.ACTION_ALLOWED; 7282 actionCode = UserReactionToApprovalUiEvent.ACTION_DISALLOWED; 7285 actionCode = UserReactionToApprovalUiEvent.ACTION_DISMISS; 7288 actionCode = UserReactionToApprovalUiEvent.ACTION_UNKNOWN; 7291 event.userAction = actionCode; 7301 int actionCode; 7304 actionCode = UserReactionToApprovalUiEvent.ACTION_ALLOWED; 7310 actionCode = UserReactionToApprovalUiEvent.ACTION_DISMISS; 7313 actionCode = UserReactionToApprovalUiEvent.ACTION_UNKNOWN; [all …]
|
/aosp12/frameworks/base/core/java/android/widget/ |
H A 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()
|
/aosp12/frameworks/av/services/camera/libcameraservice/api2/ |
H A D | HeicCompositeStream.cpp | 1878 int32_t actionCode; in onMessageReceived() local 1884 if (!msg->findInt32("action", &actionCode)) { in onMessageReceived() 1890 err, actionCode, detail.c_str()); in onMessageReceived()
|
/aosp12/frameworks/base/core/java/android/view/inputmethod/ |
H A D | BaseInputConnection.java | 665 public boolean performEditorAction(int actionCode) { in performEditorAction() argument
|
/aosp12/frameworks/base/media/java/android/media/ |
H A D | MediaCodec.java | 2360 CodecException(int errorCode, int actionCode, @Nullable String detailMessage) { in CodecException() argument 2363 mActionCode = actionCode; in CodecException()
|