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

<<11121314151617181920>>

/frameworks/volley/src/test/java/com/android/volley/
H A DResponseDeliveryTest.java62 Response<byte[]> errorResponse = Response.error(new ServerError());
/frameworks/base/core/jni/
H A Dandroid_net_LocalSocketImpl.cpp220 // To us, any of the above flags are a fatal error
223 "Unexpected error or truncation during recvmsg()");
519 goto error;
526 goto error;
533 goto error;
539 goto error;
547 goto error;
556 goto error;
562 error:
H A Dandroid_media_RemoteDisplay.cpp90 virtual void onDisplayError(int32_t error) { argument
94 gRemoteDisplayClassInfo.notifyDisplayError, error);
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp252 status_t error = hwc.prepare(*this); local
253 if (error != NO_ERROR) {
254 return error;
311 EGLint error = eglGetError(); local
312 if (error == EGL_CONTEXT_LOST ||
315 mDisplay, mSurface, error);
318 mDisplay, mSurface, error);
/frameworks/base/tools/aapt2/
H A DResourceTable.cpp209 // The existing and incoming values are strong, this is an error
221 // so the incoming attribute value is an error.
339 diag->error(DiagMessage(value->getSource())
352 diag->error(DiagMessage(value->getSource())
366 diag->error(DiagMessage(value->getSource())
380 diag->error(DiagMessage(value->getSource())
401 diag->error(DiagMessage(value->getSource())
404 diag->error(DiagMessage(configValue->value->getSource())
436 diag->error(DiagMessage(symbol.source)
449 diag->error(DiagMessag
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DResourceHelper.java161 Bridge.getLog().error(LayoutLog.TAG_RESOURCES_READ,
201 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
205 // this is an error and not warning since the file existence is
207 Bridge.getLog().error(LayoutLog.TAG_RESOURCES_READ,
218 Bridge.getLog().error(LayoutLog.TAG_RESOURCES_FORMAT,
298 Bridge.getLog().error(LayoutLog.TAG_RESOURCES_READ,
320 // this is an error and not warning since the file existence is checked before
322 Bridge.getLog().error(null, "Failed to parse file " + stringValue,
326 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
349 Bridge.getLog().error(LayoutLo
[all...]
/frameworks/native/opengl/libagl/
H A Dstate.cpp117 void _ogles_error(ogles_context_t* c, GLenum error) argument
119 if (c->error == GL_NO_ERROR)
120 c->error = error;
322 // If more than one flag has recorded an error, glGetError returns
323 // and clears an arbitrary error flag value. Thus, glGetError should
325 // if all error flags are to be reset.
328 if (c->error) {
329 const GLenum ret(c->error);
330 c->error
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcColorEquiv.cpp168 bool error; local
203 startRefColor = hwcTestParseColor(in, error);
204 // Any parse error or characters not used by parser
205 if (error
225 endRefColor = hwcTestParseColor(in, error);
226 // Any parse error or characters not used by parser
227 if (error
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java684 String error = glGetProgramInfoLog(program);
685 Log.d(GL_LOG_TAG, "Error while linking program:\n" + error);
705 String error = glGetShaderInfoLog(shader);
706 Log.d(GL_LOG_TAG, "Error while compiling shader:\n" + error);
715 int error = mEgl.eglGetError();
716 if (error != EGL_SUCCESS) {
717 Log.w(GL_LOG_TAG, "EGL error = " + GLUtils.getEGLErrorString(error));
722 int error = glGetError();
723 if (error !
[all...]
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DLocalRenderer.java134 final PlaybackError error = new PlaybackError();
139 // A new error has occurred, abort
142 error.type = mError.type;
143 error.extra = mError.extra;
144 error.errorMessage = mError.errorMessage;
148 error.extra = code;
156 error.errorExtras = errorExtras;
159 Log.e(TAG, "IOException requesting from server, unable to get more exact error");
180 setError(error.type, error
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DFontFamily_Delegate.java159 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
208 * {@link #getFont(int, boolean)} returns an empty list, it means that an error occurred while
321 Bridge.getLog().error(LayoutLog.TAG_MISSING_ASSET, "Asset not found: " + path,
339 Bridge.getLog().error(LayoutLog.TAG_MISSING_ASSET, "Asset not found: " + path,
351 Bridge.getLog().error(LayoutLog.TAG_MISSING_ASSET, "Unable to load font " + path, e,
359 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
375 Bridge.getLog().error(LayoutLog.TAG_BROKEN,
/frameworks/rs/
H A DrsDriverLoader.cpp195 goto error;
200 goto error;
206 goto error;
211 goto error;
216 goto error;
225 error:
/frameworks/av/media/libmediaplayerservice/
H A DAndroid.mk58 LOCAL_CFLAGS += -Werror -Wno-error=deprecated-declarations -Wall
/frameworks/base/core/java/android/animation/
H A DPathKeyframes.java25 * The line segments are recursively divided until there is less than 1/2 pixel error
53 public PathKeyframes(Path path, float error) { argument
57 mKeyframeData = path.approximate(error);
/frameworks/base/core/java/android/app/backup/
H A DRestoreSession.java49 * @return Zero on success, nonzero on error. The observer's restoreSetsAvailable()
69 * @return Zero on success; nonzero on error. The observer will only receive
98 * @return Zero on success, nonzero on error. The observer will only receive
132 * @return Zero on success; nonzero on error. The observer will only receive
234 public void restoreFinished(int error) { argument
236 mHandler.obtainMessage(MSG_RESTORE_FINISHED, error, 0));
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCallbackProxies.java60 public void onError(CameraDevice camera, int error) { argument
61 mProxy.invoke("onError", camera, error);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DActivityTestsBase.java108 public void finishBad(String error) { argument
109 finishWithResult(Activity.RESULT_CANCELED, (new Intent()).setAction(error));
113 RuntimeException where = new RuntimeException("Original error was here");
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DCameraTestHelper.java46 public void onError(int error, android.hardware.Camera camera) { argument
47 Assert.fail(String.format("Camera error, code: %d", error));
/frameworks/base/opengl/java/android/opengl/
H A DGLU.java29 * Return an error string from a GL or GLU error code.
31 * @param error - a GL or GLU error code.
32 * @return the error string for the input error code, or NULL if the input
33 * was not a valid GL or GLU error code.
35 public static String gluErrorString(int error) { argument
36 switch (error) {
38 return "no error";
[all...]
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DRoutingControlAction.java168 public void onSendCompleted(int error) {
170 error == HdmiControlManager.RESULT_SUCCESS);
H A DTimerRecordingAction.java84 public void onSendCompleted(int error) {
85 if (error != Constants.SEND_RESULT_SUCCESS) {
/frameworks/base/services/tests/servicestests/jni/
H A Dapf_jni.cpp64 static void throwException(JNIEnv* env, const std::string& error) { argument
70 env->ThrowNew(newExcCls, error.c_str());
/frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
H A DHugeBackupActivity.java206 public void restoreFinished(int error) {
208 Log.v(TAG, "Restore finished, error = " + error);
/frameworks/base/tools/aapt2/link/
H A DXmlReferenceLinker.cpp114 mContext->getDiagnostics()->error(
123 mContext->getDiagnostics()->error(DiagMessage(source)
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DStatusBar.java109 Bridge.getLog().error(LayoutLog.TAG_BROKEN, "Unable to draw wifi icon", e,
112 Bridge.getLog().error(LayoutLog.TAG_BROKEN, "Unable to draw wifi icon", e,

Completed in 477 milliseconds

<<11121314151617181920>>