Searched refs:error (Results 101 - 125 of 331) sorted by relevance

1234567891011>>

/frameworks/volley/src/com/android/volley/toolbox/
H A DJsonObjectRequest.java71 return Response.error(new ParseError(e));
73 return Response.error(new ParseError(je));
H A DImageLoader.java93 * it will switch to either the actual image or the error image.
102 public void onErrorResponse(VolleyError error) {
130 * - onErrorResponse will be called if there was an error loading the image.
134 * Listens for non-error changes to the loading of the image request.
228 public void onErrorResponse(VolleyError error) {
229 onGetImageError(cacheKey, error);
273 private void onGetImageError(String cacheKey, VolleyError error) { argument
278 // Set the error for this request
279 request.setError(error);
388 * Set the error fo
390 setError(VolleyError error) argument
[all...]
/frameworks/volley/tests/src/com/android/volley/mock/
H A DMockRequest.java71 public void deliverError(VolleyError error) { argument
72 super.deliverError(error);
H A DMockResponseDelivery.java48 public void postError(Request<?> request, VolleyError error) { argument
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DJpegCompressor.cpp81 // Set up error management
83 JpegError error; local
84 error.parent = this;
86 mCInfo.err = jpeg_std_error(&error);
193 JpegError *error = static_cast<JpegError*>(cinfo->err); local
194 error->parent->mJpegErrorInfo = cinfo;
/frameworks/base/core/java/android/printservice/
H A DPrintJob.java157 * not successfully printed due to an error. This is a final state.
246 * @param error The human readable, short, and translated reason
254 public boolean fail(String error) { argument
257 return setState(PrintJobInfo.STATE_FAILED, error);
377 private boolean setState(int state, String error) { argument
379 if (mPrintServiceClient.setPrintJobState(mCachedInfo.getId(), state, error)) {
384 mCachedInfo.setStateReason(error);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLTextureViewActivity.java300 String error = glGetProgramInfoLog(program);
301 Log.d(LOG_TAG, "Error while linking program:\n" + error);
323 String error = glGetShaderInfoLog(shader);
324 Log.d(LOG_TAG, "Error while compiling shader:\n" + error);
333 int error = mEgl.eglGetError();
334 if (error != EGL10.EGL_SUCCESS) {
335 Log.w(LOG_TAG, "EGL error = 0x" + Integer.toHexString(error));
340 int error = glGetError();
341 if (error !
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Daacenc.c41 int error; local
50 error = 0;
79 error = 1;
82 if(!error)
88 error = 1;
92 if (!error) {
94 error = (PsyNew(&hAacEnc->psyKernel, MAX_CHANNELS, pMemOP) ||
98 if (!error) {
100 error = QCOutNew(&hAacEnc->qcOut,MAX_CHANNELS, pMemOP);
103 if (!error) {
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLUtils.java88 * error.
171 * error.
228 * Return a string for the EGL error code, or the hex representation
229 * if the error is unknown.
231 * @param error The EGL error to convert into a String.
233 * @return An error string corresponding to the EGL error code.
235 public static String getEGLErrorString(int error) { argument
236 switch (error) {
[all...]
/frameworks/base/services/jni/
H A Dcom_android_server_connectivity_Vpn.cpp67 goto error;
74 goto error;
81 goto error;
86 error:
307 static void throwException(JNIEnv *env, int error, const char *message) argument
309 if (error == SYSTEM_ERROR) {
346 goto error;
351 goto error;
359 error:
379 goto error;
[all...]
/frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DTestCaseCollector.java114 mTestCases.add(error(clazz, "InstantiationException: could not instantiate " +
117 mTestCases.add(error(clazz, "IllegalAccessException: could not instantiate " +
122 private UiAutomatorTestCase error(Class<?> clazz, final String message) { method in class:TestCaseCollector
/frameworks/av/include/media/
H A DIRemoteDisplayClient.h42 // Error: An unknown / generic error occurred.
57 // It is currently an error for the display to disconnect for any other reason.
61 // or an unrecoverable error occurred and the connection was severed.
62 virtual void onDisplayError(int32_t error) = 0; // one-way
/frameworks/av/services/audioflinger/
H A DRecordTracks.h19 #error This header file should only be included from AudioFlinger.h
/frameworks/base/libs/hwui/font/
H A DFontUtil.h35 # error TEXTURE_BORDER_SIZE other than 1 is not currently supported
/frameworks/base/tools/layoutlib/bridge/src/android/text/
H A DAndroidBidi_Delegate.java49 // Invalid code. Log error, assume LEVEL_DEFAULT_LTR and continue.
50 Bridge.getLog().error(LayoutLog.TAG_BROKEN, "Invalid direction flag", null);
/frameworks/compile/libbcc/
H A Dlibbcc-device-build.mk58 $(error Unsupported architecture $(TARGET_ARCH))
/frameworks/compile/mclinker/lib/Support/
H A DSpace.cpp113 error(diag::err_cannot_read_file) << pHandler.path() << start << size;
140 error(diag::err_cannot_mmap_file) << pHandler.path() << start << size;
170 error(diag::err_cannot_munmap_file) << pHandler.path();
187 error(diag::err_cannot_write_file) << pHandler.path()
/frameworks/compile/mclinker/tools/mcld/include/alone/Support/
H A DTargetLinkerConfigs.h73 # error "Unsupported Default Target!"
/frameworks/native/include/gui/
H A DIGraphicBufferAlloc.h40 PixelFormat format, uint32_t usage, status_t* error) = 0;
/frameworks/native/opengl/include/EGL/
H A Deglplatform.h106 #error "Platform not recognized"
/frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
H A DGL2JavaView.java143 int error;
144 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
145 Log.e(TAG, op + ": glError " + error);
146 throw new RuntimeException(op + ": glError " + error);
/frameworks/native/opengl/tests/gl2_jni/jni/
H A Dgl_code.cpp21 for (GLint error = glGetError(); error; error
23 ALOGI("after %s() glError (0x%x)\n", op, error);
/frameworks/native/opengl/tests/gldual/jni/
H A Dgl_code.cpp21 for (GLint error = glGetError(); error; error
23 ALOGI("after %s() glError (0x%x)\n", op, error);
/frameworks/rs/driver/
H A DrsdProgramStore.cpp74 goto error;
115 goto error;
145 goto error;
150 error:
/frameworks/native/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp37 // int error = glGetError();
38 // fprintf(stderr, "glGetError() = %d, result of glGetString = %x\n", error,
52 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error
54 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
55 error);
60 for (GLint error = glGetError(); error; error
324 EGLint error = eglGetError(); local
[all...]

Completed in 607 milliseconds

1234567891011>>