Searched refs:error (Results 126 - 150 of 451) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.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
220 EGLint error = eglGetError(); local
[all...]
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp39 // int error = glGetError();
40 // fprintf(stderr, "glGetError() = %d, result of glGetString = %x\n", error,
54 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error
56 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
57 error);
62 for (GLint error = glGetError(); error; error
215 EGLint error = eglGetError(); local
[all...]
/frameworks/base/core/java/android/printservice/
H A DIPrintServiceClient.aidl34 boolean setPrintJobState(in PrintJobId printJobId, int state, String error);
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/core/jni/
H A Dandroid_os_SystemProperties.cpp40 goto error;
56 error:
77 goto error;
92 error:
107 goto error;
122 error:
136 goto error;
158 error:
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSetArcTransmissionStateAction.java82 public void onSendCompleted(int error) {
83 switch (error) {
H A DSystemAudioAutoInitiationAction.java50 public void onSendCompleted(int error) {
51 if (error != Constants.SEND_RESULT_SUCCESS) {
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java49 public void error(String format, Object... args) { method in class:Log
59 error(format + "\n" + sw.toString(), args);
/frameworks/compile/libbcc/
H A Dlibbcc-targets.mk45 $(error Unsupported architecture $(TARGET_ARCH))
/frameworks/compile/mclinker/include/mcld/Support/
H A DMsgHandling.h30 MsgHandler error(unsigned int pID);
49 inline mcld::MsgHandler mcld::error(unsigned int pID) { function in class:mcld
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DJsonArrayRequest.java68 return Response.error(new ParseError(e));
70 return Response.error(new ParseError(je));
H A DJsonObjectRequest.java71 return Response.error(new ParseError(e));
73 return Response.error(new ParseError(je));
/frameworks/base/libs/hwui/
H A DLayerRenderer.cpp375 GLenum error = GL_NO_ERROR; local
410 if ((error = glGetError()) != GL_NO_ERROR) goto error;
425 if ((error = glGetError()) != GL_NO_ERROR) goto error;
429 if ((error = glGetError()) != GL_NO_ERROR) goto error;
441 if ((error = glGetError()) != GL_NO_ERROR) goto error;
451 if ((error
[all...]
/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/hardware/camera2/legacy/
H A DCameraDeviceState.java65 * error has occurred.
90 * @param error the error to set. Should be one of the error codes defined in
93 public synchronized void setError(int error) { argument
94 mCurrentError = error;
106 * @return {@code false} if an error has occurred.
121 * @return {@code false} if an error has occurred.
138 * @param captureError Report a recoverable error for a single request using a valid
139 * error cod
213 doStateTransition(int newState, final long timestamp, final int error) argument
[all...]
/frameworks/base/tools/aapt2/
H A DBinaryResourceParser.cpp129 bool error = false; local
140 error |= !parseTable(parser.getChunk());
144 Logger::error(mSource)
151 return !error;
200 Logger::error(mSource)
208 Logger::error(mSource)
221 Logger::error(mSource)
230 Logger::error(mSource)
237 Logger::error(mSource)
250 Logger::error(mSourc
[all...]
H A DResourceTable.cpp102 // The existing and incoming values are strong, this is an error
114 // so the incoming attribute value is an error.
172 Logger::error(source)
184 Logger::error(source)
199 Logger::error(source)
216 Logger::error(source)
239 Logger::error(source)
244 Logger::error(iter->source)
271 Logger::error(source)
283 Logger::error(sourc
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
H A DImageUtils.java150 String error = null;
153 error = String.format("Images differ (by %.1f%%)", percentDifference);
155 error = "Widths differ too much for " + imageName + ": " +
159 error = "Heights differ too much for " + imageName + ": " +
165 if (error != null) {
184 error += " - see details in " + output.getPath() + "\n";
185 error = saveImageAndAppendMessage(image, error, relativePath);
186 System.out.println(error);
187 fail(error);
[all...]
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DKeepaliveTracker.java180 int error = checkInterval();
181 if (error == SUCCESS) error = checkNetworkConnected();
182 if (error == SUCCESS) error = checkSourceAddress();
183 return error;
188 int error = isValid();
189 if (error == SUCCESS) {
194 notifyMessenger(NO_KEEPALIVE, error);
291 int error
[all...]
/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.c42 int error; local
56 error = 0;
85 error = 1;
88 if(!error)
94 error = 1;
98 if (!error) {
100 error = (PsyNew(&hAacEnc->psyKernel, MAX_CHANNELS, pMemOP) ||
104 if (!error) {
106 error = QCOutNew(&hAacEnc->qcOut,MAX_CHANNELS, pMemOP);
109 if (!error) {
[all...]
/frameworks/base/cmds/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/base/opengl/java/android/opengl/
H A DGLUtils.java80 * error.
163 * error.
220 * Return a string for the EGL error code, or the hex representation
221 * if the error is unknown.
223 * @param error The EGL error to convert into a String.
225 * @return An error string corresponding to the EGL error code.
227 public static String getEGLErrorString(int error) { argument
228 switch (error) {
[all...]
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DRenderer.java163 protected void pushOnError(int type, int extra, Bundle extras, Throwable error) { argument
165 listener.onError(type, extra, extras, error);
199 * When an error occurs onError will be called but not onStateChanged.
200 * The Manager will remain in the error state until
204 Throwable error);
208 * transitions except to an error state.
203 onError(int type, int extra, Bundle extras, Throwable error) argument
/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

Completed in 2429 milliseconds

1234567891011>>