Searched refs:error (Results 251 - 275 of 395) sorted by relevance

<<111213141516

/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DTestSuiteBuilderTest.java23 import android.test.suitebuilder.examples.error.ErrorTest;
24 import android.test.suitebuilder.examples.error.FailingTest;
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
H A DTestDelegates.java215 for (String error : mErrors) {
216 s.append(error).append('\n');
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
H A DLayoutLibTestCallback.java83 mLog.error(null, "Unknown field type in R class: %1$s", type);
86 mLog.error(ignored, "Malformed R class: %1$s", PACKAGE_NAME + ".R");
/frameworks/native/libs/gui/
H A DGLConsumer.cpp427 // keep going, with error raised [?]
452 GLint error; local
453 while ((error = glGetError()) != GL_NO_ERROR) {
454 ST_LOGW("bindTextureImage: clearing GL error: %#04x", error);
477 if ((error = glGetError()) != GL_NO_ERROR) {
488 if ((error = glGetError()) != GL_NO_ERROR) {
489 ST_LOGE("bindTextureImage: error binding external image: %#04x", error);
504 // never been set, so don't error ou
1138 EGLint error = eglGetError(); local
[all...]
/frameworks/volley/src/com/android/volley/
H A DRequest.java113 * Creates a new request with the given URL and error listener. Note that
127 * URL, and error listener. Note that the normal response listener is not provided here as
211 * Notifies the request queue that this request has finished (successfully or with error).
496 * attempts remaining, this will cause delivery of a {@link TimeoutError} error.
530 * @return The parsed response, or null in the case of an error
535 * Subclasses can override this method to parse 'networkError' and return a more specific error.
539 * @param volleyError the error retrieved from the network
556 * Delivers error message to the ErrorListener that the Request was
559 * @param error Error details
561 public void deliverError(VolleyError error) { argument
[all...]
/frameworks/rs/cpp/
H A DRenderScript.cpp447 goto error;
463 goto error;
472 error:
525 void RS::throwError(RSError error, const char *errMsg) { argument
527 mCurrentError = error;
528 ALOGE("RS CPP error: %s", errMsg);
530 ALOGE("RS CPP error (masked by previous error): %s", errMsg);
560 ALOGE("RS::message handler realloc error %zu", rbuf_size);
/frameworks/rs/driver/
H A DrsdGL.cpp79 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error
81 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
82 error);
/frameworks/base/core/java/android/content/
H A DContentResolver.java234 "authentication-error",
235 "io-error",
236 "parse-error",
240 "internal-error",
244 public static String syncErrorToString(int error) { argument
245 if (error < 1 || error > SYNC_ERROR_NAMES.length) {
246 return String.valueOf(error);
248 return SYNC_ERROR_NAMES[error - 1];
252 public static int syncErrorStringToInt(String error) { argument
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp236 error(diag::err_no_inputs);
244 error(diag::err_mixed_shared_static_objects)
257 error(diag::err_nmagic_not_static);
261 error(diag::err_omagic_not_static);
331 error(diag::err_cannot_merge_section) << (*sect)->name()
343 error(diag::err_cannot_merge_section) << (*sect)->name()
357 error(diag::err_cannot_merge_section) << (*sect)->name()
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessStatsService.java670 String[] error = new String[1];
672 args[i], sep, error);
674 pw.println("Error in \"" + args[i] + "\": " + error[0]);
687 String[] error = new String[1];
688 csvMemStats = parseStateList(ProcessStats.ADJ_MEM_NAMES_CSV, 1, args[i], sep, error);
690 pw.println("Error in \"" + args[i] + "\": " + error[0]);
703 String[] error = new String[1];
704 csvProcStats = parseStateList(ProcessStats.STATE_NAMES_CSV, 1, args[i], sep, error);
706 pw.println("Error in \"" + args[i] + "\": " + error[0]);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java408 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
417 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
421 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
586 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
642 Bridge.getLog().error(LayoutLog.TAG_RESOURCES_RESOLVE_THEME_ATTR,
668 Bridge.getLog().error(null,
675 Bridge.getLog().error(null,
682 Bridge.getLog().error(null,
1502 Bridge.getLog().error(LayoutLog.TAG_UNSUPPORTED, "OBB not supported", null);
/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/libeffects/preprocessing/
H A DPreProcessing.cpp781 goto error;
789 goto error;
794 goto error;
823 goto error;
829 error:
965 int error; local
970 &error);
973 speex_resampler_strerror(error));
980 &error);
983 speex_resampler_strerror(error));
[all...]
/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/
H A DQSTile.java278 final String error = "Error in " + name;
279 Log.w(TAG, error, t);
280 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/native/opengl/libs/EGL/
H A Dtrace.cpp411 bool error = false; \
414 error = true; \
416 if (error) { \
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp172 // there could be more than one error flag
173 GLenum error = glGetError(); local
174 if (error == GL_NO_ERROR)
176 ALOGE("GL error 0x%04x", int(error));
270 "glCheckFramebufferStatusOES error %d", mStatus);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp3655 ALOGW("Failure getting entry for 0x%08x (t=%d e=%d) (error %d)\n",
4078 TABLE_SUPER_NOISY(printf("Identifier for name: error=%d\n", mError));
4439 bool error = false; local
4440 while (i < len && !error) {
4441 val = (val*16) + get_hex(s[i], &error);
4444 if (error) {
4769 bool error = false; local
4773 color |= get_hex(s[1], &error) << 20;
4774 color |= get_hex(s[1], &error) << 16;
4775 color |= get_hex(s[2], &error) << 1
[all...]
/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/
H A DAudioPolicyEffects.cpp465 goto error;
474 goto error;
489 goto error;
497 error:
/frameworks/base/core/java/android/print/
H A DPrintManager.java872 public void onLayoutFailed(CharSequence error) { argument
887 callback.onLayoutFailed(error, mSequence);
975 public void onWriteFailed(CharSequence error) { argument
990 callback.onWriteFailed(error, mSequence);
/frameworks/base/core/jni/android/graphics/
H A DPathEffect.cpp42 #error Need to convert float array to SkScalar array before calling the following function.
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DVideoDumpView.java649 int error;
650 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
651 Log.e(TAG, op + ": glError " + error);
652 throw new RuntimeException(op + ": glError " + error);

Completed in 5019 milliseconds

<<111213141516