Searched refs:error (Results 401 - 425 of 622) sorted by relevance

<<11121314151617181920>>

/frameworks/native/services/vr/performanced/
H A Dstdio_filebuf.h161 case std::codecvt_base::error:
204 case std::codecvt_base::error:
/frameworks/rs/tests/lldb/tests/harness/
H A Dutil_bundle.py121 self._log.error('Cannot match the string "Success" in the '
329 self._log.error('Executable {0} neither Java nor NDK.'
/frameworks/support/buildSrc/src/main/groovy/android/support/checkapi/
H A DCheckApiTask.groovy38 * Doclava-defined error codes. See {@link com.google.doclava.Errors} for a complete list of
39 * supported error codes.
42 * SHA is unique to a specific API change and is logged to the error output on failure.
71 /** Optional file containing a newline-delimited list of error SHAs to ignore. */
109 * Optional set of error SHAs to ignore.
111 * Each error SHA is unique to a specific API change.
137 * List of Doclava error codes to treat as errors.
139 * See {@link com.google.doclava.Errors} for a complete list of error codes.
145 * List of Doclava error codes to treat as warnings.
147 * See {@link com.google.doclava.Errors} for a complete list of error code
[all...]
/frameworks/rs/driver/
H A DrsdGL.cpp75 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error
77 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
78 error);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaBrowserServiceSupport.java564 Log.d(TAG, "handleStopRequest: mState=" + mPlayback.getState() + " error=" + withError);
637 * Update the current media player state, optionally showing an error message.
639 * @param error if not null, error message to present to the user.
641 private void updatePlaybackState(String error) { argument
654 // If there is an error message, send it to the playback state:
655 if (error != null) {
658 stateBuilder.setErrorMessage(error);
752 public void onError(String error) { argument
753 updatePlaybackState(error);
[all...]
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaBrowserServiceSupport.java564 Log.d(TAG, "handleStopRequest: mState=" + mPlayback.getState() + " error=" + withError);
637 * Update the current media player state, optionally showing an error message.
639 * @param error if not null, error message to present to the user.
641 private void updatePlaybackState(String error) { argument
654 // If there is an error message, send it to the playback state:
655 if (error != null) {
658 stateBuilder.setErrorMessage(error);
752 public void onError(String error) { argument
753 updatePlaybackState(error);
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp232 error(diag::err_no_inputs);
240 error(diag::err_mixed_shared_static_objects) << (*lib)->name()
253 error(diag::err_nmagic_not_static);
257 error(diag::err_omagic_not_static);
363 error(diag::err_cannot_merge_section) << (*sect)->name()
375 error(diag::err_cannot_merge_section) << (*sect)->name()
395 error(diag::err_cannot_merge_section) << (*sect)->name()
/frameworks/native/libs/vr/libpdx_default_transport/
H A Dpdx_benchmarks.cpp274 CHECK(message.ReplyError(status.error()));
295 CHECK(message.ReplyError(status.error()));
312 CHECK(message.ReplyError(status.error()));
324 CHECK(message.ReplyError(status.error()));
455 return status ? 0 : -status.error();
483 return status ? 0 : -status.error();
545 if (ret.error() != ESHUTDOWN) {
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessStatsService.java670 String[] error = new String[1];
672 ProcessStats.ADJ_SCREEN_MOD, args[i], sep, error);
674 pw.println("Error in \"" + args[i] + "\": " + error[0]);
687 String[] error = new String[1];
689 sep, error);
691 pw.println("Error in \"" + args[i] + "\": " + error[0]);
704 String[] error = new String[1];
706 sep, error);
708 pw.println("Error in \"" + args[i] + "\": " + error[0]);
/frameworks/av/media/common_time/
H A DICommonClock.cpp325 int32_t error; local
326 status_t status = getEstimatedError(&error);
329 reply->writeInt32(error);
/frameworks/av/media/libaaudio/examples/loopback/src/
H A Dloopback.cpp110 double error = average - mLatencyArray[i]; local
111 sum += error * error; // squared
497 printf("input error = %d = %s\n",
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp834 goto error;
845 goto error;
850 goto error;
879 goto error;
885 error:
1007 int error; local
1012 &error);
1015 speex_resampler_strerror(error));
1022 &error);
1025 speex_resampler_strerror(error));
[all...]
/frameworks/base/media/java/android/media/
H A DAudioSystem.java191 /* Command failed or unspecified audio error. see ErrorCallback */
199 * Handles the audio error callback.
205 * param error error code:
210 void onError(int error); argument
214 * Registers a callback to be invoked when an error occurs.
227 private static void errorCallbackFromNative(int error) argument
236 errorCallback.onError(error);
/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java535 public static String getErrorString(int error) { argument
536 switch (error) {
568 return getHex(error);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSTileImpl.java431 final String error = "Error in " + name;
432 Log.w(TAG, error, t);
433 mHost.warn(error, t);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DRenderTarget.java424 int error = egl.eglGetError();
425 if (error != EGL10.EGL_SUCCESS) {
426 throw new RuntimeException("Error executing " + command + "! EGL error = 0x"
427 + Integer.toHexString(error));
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DBridgeInflater.java209 // This is usually done by the superclass but this allows us catching the error and
214 Bridge.getLog().error(LayoutLog.TAG_BROKEN, "Unable to inflate view tag without " +
242 Bridge.getLog().error(LayoutLog.TAG_BROKEN, e.getMessage(), e, null);
304 Bridge.getLog().error(LayoutLog.TAG_RESOURCES_READ,
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsAbiFlags.cpp54 error(diag::error_Mips_abiflags_invalid_size) << pInput.name();
60 error(diag::error_Mips_abiflags_invalid_size) << pInput.name();
68 error(diag::error_Mips_abiflags_invalid_version) << int(data->version)
106 // We check ELF flags and show error in case
130 // We check ELF flags and show error in case
158 // We check ELF flags and show error in case
/frameworks/native/libs/vr/libbufferhubqueue/tests/
H A Dbuffer_hub_queue-test.cpp119 ASSERT_EQ(ETIMEDOUT, status.error());
128 ASSERT_EQ(ETIMEDOUT, consumer_status.error());
305 ASSERT_EQ(ETIMEDOUT, p2_status.error());
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp174 // there could be more than one error flag
175 GLenum error = glGetError(); local
176 if (error == GL_NO_ERROR)
178 ALOGE("GL error 0x%04x", int(error));
272 "glCheckFramebufferStatusOES error %d", mStatus);
/frameworks/rs/rsov/compiler/
H A DWrapper.cpp67 // fatal internal error which is really unexpected.
259 return true; // GPUBlock not found - not an error by itself.
392 Module *run(Module *m, int *error) override {
394 if (error) {
395 *error = success ? 0 : -1;
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dcod_amr.cpp391 st->error = st->mem_err + M;
489 st->error = st->mem_err + M;
1052 st->h1, xn, res, st->error);
1060 st->h1, xn, res, st->error);
1161 st->h1, xn, res, st->error);
1461 st->h1, xn, res, st->error);
1469 st->h1, xn, res, st->error);
1577 st->h1, xn, res, st->error);
/frameworks/av/services/audioflinger/
H A DTrackBase.h19 #error This header file should only be included from AudioFlinger.h
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.cpp396 ALOGE("%s realloc error for size %zu", __func__, *totSize);
457 ALOGE("%s realloc error for string len %zu", __func__, *totSize);
481 ALOGE("%s malloc error for effect structure of size %zu",
508 goto error;
518 goto error;
534 goto error;
542 error:
/frameworks/base/core/java/android/companion/
H A DCompanionDeviceManager.java86 * Called if there was an error looking for device(s), e.g. timeout
88 * @param error the cause of the error
90 public abstract void onFailure(CharSequence error); argument

Completed in 993 milliseconds

<<11121314151617181920>>