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

1234567891011>>

/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_env.cpp77 // Log error if this did not work
307 for (GLint error = glGetError(); error; error = glGetError()) {
308 ALOGE("GL Error: Operation '%s' caused GL error (0x%x)\n",
310 error);
318 for (EGLint error = eglGetError();
319 error != EGL_SUCCESS;
320 error = eglGetError()) {
321 ALOGE("EGL Error: Operation '%s' caused EGL error (
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dtypedefs.h91 #error cannot find 8-bit type
113 #error cannot find 16-bit type
135 #error cannot find 32-bit type
/frameworks/base/media/java/android/media/
H A DRemoteDisplay.java149 private void notifyDisplayError(final int error) { argument
153 mListener.onDisplayError(error);
165 void onDisplayError(int error); argument
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaPlayerStateUnitTestTemplate.java374 * Sets the error value of the corresponding state to the given error.
377 * @param error the value of the state error to be set.
379 private void setStateError(MediaPlayerStateErrors.MediaPlayerState state, boolean error) { argument
382 mStateErrors.errorInIdleState = error;
385 mStateErrors.errorInIdleStateAfterReset = error;
388 mStateErrors.errorInInitializedState = error;
391 mStateErrors.errorInPreparedState = error;
394 mStateErrors.errorInPreparedStateAfterStop = error;
[all...]
H A DMediaRecorderStateUnitTestTemplate.java246 * Sets the error value of the corresponding state to the given error.
249 * @param error the value of the state error to be set.
251 private void setStateError(MediaRecorderStateErrors.MediaRecorderState state, boolean error) { argument
254 mStateErrors.errorInInitialState = error;
257 mStateErrors.errorInInitialStateAfterReset = error;
260 mStateErrors.errorInInitialStateAfterStop = error;
263 mStateErrors.errorInInitializedState = error;
266 mStateErrors.errorInDataSourceConfiguredState = error;
[all...]
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DDocumentLoader.java282 } catch (IOException error) {
283 mError = error;
321 } catch (FileNotFoundException error) {
322 mError = error;
335 } catch (IOException error) {
336 Log.e(MtpDocumentsProvider.TAG, "Failed to load object info", error);
366 } catch (IOException error) {
367 Log.e(MtpDocumentsProvider.TAG, "Failed to get object size property.", error);
383 } catch (FileNotFoundException error) {
387 mError = error;
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp92 std::string error; local
93 result = lookupTarget(pTriple.getTriple(), error);
96 "'\n" + "(Detail: " + error + ")\n";
/frameworks/native/libs/vr/libvrflinger/
H A Dacquired_buffer.cpp16 int* error) {
20 if (error)
21 *error = ret;
15 AcquiredBuffer(const std::shared_ptr<BufferConsumer>& buffer, int* error) argument
/frameworks/native/services/surfaceflinger/
H A DDdmConnection.cpp60 goto error;
75 goto error;
110 error:
/frameworks/av/media/libmedia/
H A DIRemoteDisplayClient.cpp60 void onDisplayError(int32_t error) argument
64 data.writeInt32(error);
95 int32_t error = data.readInt32(); local
96 onDisplayError(error);
H A DMetadata.cpp145 bool error = false; local
151 error = true;
156 error = true;
163 return !error;
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
H A DStream.h43 virtual bool sendToHW(std::string &error);
/frameworks/base/libs/hwui/tests/macrobench/
H A Dmain.cpp181 bool error = false; local
209 error = true;
217 error = true;
228 error = true;
241 error = true;
249 error = true;
253 error = true;
274 error = true;
279 if (error) {
/frameworks/base/libs/hwui/utils/
H A DGLUtils.cpp25 #error Setting DEBUG_OPENGL to HIGH requires setting HWUI_ENABLE_OPENGL_VALIDATION to true in the Android.mk!
34 // and asserts that there was no error. So this can just return success.
43 ALOGE("GL error: GL_INVALID_ENUM");
46 ALOGE("GL error: GL_INVALID_VALUE");
49 ALOGE("GL error: GL_INVALID_OPERATION");
52 ALOGE("GL error: Out of memory!");
55 ALOGE("GL error: 0x%x", status);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DKeepalivePacketData.java93 final public int error; field in class:KeepalivePacketData.InvalidPacketException
94 public InvalidPacketException(int error) { argument
95 this.error = error;
/frameworks/compile/mclinker/lib/MC/
H A DAttribute.cpp21 error(diag::err_unsupported_whole_archive);
25 error(diag::err_unsupported_as_needed);
29 error(diag::err_unsupported_add_needed);
33 error(diag::err_unsupported_Bdynamic);
/frameworks/native/include/ui/
H A DGralloc2.h104 Error error = mMapper.createDescriptor(descriptorInfo, &descriptor); local
105 if (error == Error::NONE) {
106 error = allocate(descriptor, count, outStride, outBufferHandles);
108 return error;
/frameworks/native/opengl/tests/gl2_jni/
H A DAndroid.mk33 LOCAL_CFLAGS := -Werror -Wno-error=unused-parameter
/frameworks/native/opengl/tests/gl_jni/
H A DAndroid.mk33 LOCAL_CFLAGS := -Werror -Wno-error=unused-parameter
/frameworks/native/opengl/tests/gl_perfapp/
H A DAndroid.mk36 LOCAL_CFLAGS := -Werror -Wno-error=unused-parameter
/frameworks/native/opengl/tests/gldual/
H A DAndroid.mk33 LOCAL_CFLAGS := -Werror -Wno-error=unused-parameter
/frameworks/rs/tests/java_api/RsNbody/src/com/example/android/rs/nbody_gl/
H A DBasicGLRenderer.java79 int error;
80 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
81 Log.e(TAG, glOperation + ": glError " + error);
82 throw new RuntimeException(glOperation + ": glError " + error);
/frameworks/rs/tests/lldb/tests/harness/
H A Dtest_base.py180 error = res.GetError()
181 error = error if error else res.GetOutput()
182 raise self.TestFail('The command "{0}" failed with the error: {1}'
183 .format(cmd, error if error else '<N/a>'))
229 log.error('[Output] {0}'.format(output.rstrip() if output
232 # print the back trace, it should help to identify the error in
241 log.error('\
[all...]
/frameworks/webview/chromium/plat_support/
H A Ddraw_sw.h22 #error "Can't mix C and C++ when using jni.h"
/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,
57 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error
59 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
60 error);
65 for (GLint error = glGetError(); error; error
225 EGLint error = eglGetError(); local
[all...]

Completed in 9415 milliseconds

1234567891011>>