Searched refs:error (Results 201 - 225 of 331) sorted by relevance

1234567891011>>

/frameworks/base/core/java/com/android/internal/http/multipart/
H A DMultipartEntity.java210 log.error("An exception occurred while getting the length of the parts", e);
/frameworks/base/services/java/com/android/server/print/
H A DRemotePrintSpooler.java205 public final boolean setPrintJobState(PrintJobId printJobId, int state, String error) { argument
213 printJobId, state, error);
518 int status, String error) throws RemoteException, TimeoutException {
520 target.setPrintJobState(printJobId, status, error, mCallback, sequence);
517 setPrintJobState(IPrintSpooler target, PrintJobId printJobId, int status, String error) argument
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java451 * Implements the EventHandler error method called when a server
453 * @param id Status code of the error
454 * @param description Brief description of the error
456 public void error(int id, String description) { method in class:TestEventHandler
458 Log.v(LOGTAG, "TestEventHandler: error() called Id:" + id +
496 * SSL certificate error callback. Handles SSL error(s) on the way
499 public boolean handleSslErrorRequest(SslError error) { argument
500 int primaryError = error.getPrimaryError();
504 " primary error
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapFactory_Delegate.java91 Bridge.getLog().error(null,"Failed to load image" , e, null);
H A DPorterDuffXfermode_Delegate.java77 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java429 int error;
430 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
431 Log.e(TAG, op + ": glError " + error);
432 throw new RuntimeException(op + ": glError " + error);
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp236 EGLint error = eglGetError(); local
237 if (error == EGL_CONTEXT_LOST ||
240 mDisplay, mSurface, error);
243 mDisplay, mSurface, error);
/frameworks/volley/src/com/android/volley/toolbox/
H A DNetworkImageView.java92 * Sets the error image resource ID to be used for this view in the event that the image
144 public void onErrorResponse(VolleyError error) {
/frameworks/base/services/java/com/android/server/am/
H A DProcessStatsService.java640 String[] error = new String[1];
642 args[i], sep, error);
644 pw.println("Error in \"" + args[i] + "\": " + error[0]);
657 String[] error = new String[1];
658 csvMemStats = parseStateList(ProcessStats.ADJ_MEM_NAMES_CSV, 1, args[i], sep, error);
660 pw.println("Error in \"" + args[i] + "\": " + error[0]);
673 String[] error = new String[1];
674 csvProcStats = parseStateList(ProcessStats.STATE_NAMES_CSV, 1, args[i], sep, error);
676 pw.println("Error in \"" + args[i] + "\": " + error[0]);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java379 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
388 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
392 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
535 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
592 Bridge.getLog().error(LayoutLog.TAG_RESOURCES_RESOLVE_THEME_ATTR,
620 Bridge.getLog().error(null,
627 Bridge.getLog().error(null,
634 Bridge.getLog().error(null,
1402 Bridge.getLog().error(LayoutLog.TAG_UNSUPPORTED, "OBB not supported", null);
/frameworks/av/libvideoeditor/vss/mcs/src/
H A DM4MCS_MediaAndCodecSubscription.c48 #error "no reader registered"
85 #error "no writer registered"
137 * @return M4NO_ERROR: there is no error
178 M4OSA_TRACE1_0("M4READER_3GP interface allocation error");
196 M4OSA_TRACE1_0("M4READER_AMR interface allocation error");
215 M4OSA_TRACE1_0("M4READER_MP3 interface allocation error");
238 M4OSA_TRACE1_0("M4DECODER_MPEG4 interface allocation error");
255 M4OSA_TRACE1_0("M4DECODER_AVC interface allocation error");
277 M4OSA_TRACE1_0("M4AD PHILIPS AMRNB interface allocation error");
294 M4OSA_TRACE1_0("M4AD PHILIPS AAC interface allocation error");
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java54 * <li>Optionally wraps, traces, and/or error-checks the renderer's OpenGL calls.
192 * that an error has occurred. This can be used to help track down which OpenGL ES call
193 * is causing an error.
1084 int error = mEgl.eglGetError();
1085 if (error == EGL10.EGL_BAD_NATIVE_WINDOW) {
1137 * @return the EGL error code from eglSwapBuffers.
1187 public static void throwEglException(String function, int error) { argument
1188 String message = formatEglError(function, error);
1196 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
1197 Log.w(tag, formatEglError(function, error));
1200 formatEglError(String function, int error) argument
[all...]
H A DEGLLogWrapper.java535 public static String getErrorString(int error) { argument
536 switch (error) {
568 return getHex(error);
/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/compile/mclinker/lib/LD/
H A DStaticResolver.cpp171 case MDEF: { /* multiple definition error. */
172 error(diag::multiple_definitions) << pNew.name();
187 error(diag::undefined_situation) << action << old->name() << pNew.name();
/frameworks/volley/src/com/android/volley/
H A DRequest.java106 * Creates a new request with the given URL and error listener. Note that
119 * URL, and error listener. Note that the normal response listener is not provided here as
181 * Notifies the request queue that this request has finished (successfully or with error).
450 * attempts remaining, this will cause delivery of a {@link TimeoutError} error.
484 * @return The parsed response, or null in the case of an error
489 * Subclasses can override this method to parse 'networkError' and return a more specific error.
493 * @param volleyError the error retrieved from the network
510 * Delivers error message to the ErrorListener that the Request was
513 * @param error Error details
515 public void deliverError(VolleyError error) { argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java163 public void error(String tag, String message, Object data) {
168 public void error(String tag, String message, Throwable throwable, Object data) {
238 sDefaultLog.error(null, "Missing Stub: " + signature +
244 // user. Having the error in the console is just as useful. We'll
257 log.error(LayoutLog.TAG_BROKEN,
298 log.error(LayoutLog.TAG_BROKEN,
/frameworks/rs/cpp/
H A DRenderScript.cpp434 goto error;
450 goto error;
459 error:
505 void RS::throwError(RSError error, const char *errMsg) { argument
507 mCurrentError = error;
508 ALOGE("RS CPP error: %s", errMsg);
510 ALOGE("RS CPP error (masked by previous error): %s", errMsg);
540 ALOGE("RS::message handler realloc error %zu", rbuf_size);
/frameworks/rs/driver/
H A DrsdGL.cpp80 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error
82 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
83 error);
/frameworks/base/core/java/android/content/
H A DContentResolver.java214 "authentication-error",
215 "io-error",
216 "parse-error",
220 "internal-error",
224 public static String syncErrorToString(int error) { argument
225 if (error < 1 || error > SYNC_ERROR_NAMES.length) {
226 return String.valueOf(error);
228 return SYNC_ERROR_NAMES[error - 1];
232 public static int syncErrorStringToInt(String error) { argument
[all...]
/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/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.cpp430 bool error = false; \
433 error = true; \
435 if (error) { \
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp3237 ALOGW("Failure getting entry for 0x%08x (t=%d e=%d) in package %zd (error %d)\n",
3722 TABLE_SUPER_NOISY(printf("Identifier for name: error=%d\n", mError));
4085 bool error = false; local
4086 while (i < len && !error) {
4087 val = (val*16) + get_hex(s[i], &error);
4090 if (error) {
4393 bool error = false; local
4397 color |= get_hex(s[1], &error) << 20;
4398 color |= get_hex(s[1], &error) << 16;
4399 color |= get_hex(s[2], &error) << 1
[all...]

Completed in 822 milliseconds

1234567891011>>