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

1234567891011>>

/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/native/vulkan/include/vulkan/
H A Dvk_platform.h55 #error "Vulkan isn't supported for the 'armeabi' NDK ABI"
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DOemHookResponse.java36 * @param responseInfo Response info struct containing response type, serial no. and error
44 if (responseInfo.error == RadioError.NONE) {
53 * @param responseInfo Response info struct containing response type, serial no. and error
/frameworks/rs/driver/
H A DrsdProgramStore.cpp73 goto error;
114 goto error;
144 goto error;
149 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...]
/frameworks/native/opengl/tests/gl2_yuvtex/
H A Dgl2_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
325 EGLint error = eglGetError(); local
[all...]
/frameworks/base/media/java/android/media/tv/
H A DITvInputSessionCallback.aidl47 void onError(int error);
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DBlockingGLTextureView.java222 int error = mEgl.eglGetError();
223 if (error == EGL10.EGL_BAD_NATIVE_WINDOW) {
254 * @return the EGL error code from eglSwapBuffers.
292 public static void throwEglException(String function, int error) { argument
293 String message = formatEglError(function, error);
297 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
298 Log.w(tag, formatEglError(function, error));
301 public static String formatEglError(String function, int error) { argument
302 return function + " failed: " + error;
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DOneTouchRecordAction.java63 public void onSendCompleted(int error) {
64 // if failed to send <Record On>, display error message and finish action.
65 if (error != SendMessageResult.SUCCESS) {
H A DSetArcTransmissionStateAction.java83 public void onSendCompleted(int error) {
84 switch (error) {
H A DSystemAudioStatusAction.java58 public void onSendCompleted(int error) {
59 if (error != SendMessageResult.SUCCESS) {
/frameworks/base/tools/aapt2/unflatten/
H A DResChunkPullParser.h63 const std::string& error() const;
118 inline const std::string& ResChunkPullParser::error() const { return error_; } function in class:aapt::ResChunkPullParser
/frameworks/base/tools/streaming_proto/
H A DErrors.cpp59 Error error(filename, lineno, buffer);
62 m_errors.push_back(error);
/frameworks/native/libs/binder/tests/
H A DbinderThroughputTest.cpp74 int error = write(m_writeFd, &val, sizeof(val)); local
75 ASSERT_TRUE(error >= 0);
79 int error = read(m_readFd, &val, sizeof(val)); local
80 ASSERT_TRUE(error >= 0);
83 int error = write(m_writeFd, &v, sizeof(T)); local
84 ASSERT_TRUE(error >= 0);
87 int error = read(m_readFd, &v, sizeof(T)); local
88 ASSERT_TRUE(error >= 0);
/frameworks/av/media/mtp/
H A DAsyncIO.cpp30 if (aiocbp->ret == -1) aiocbp->error = errno;
36 if (aiocbp->ret == -1) aiocbp->error = errno;
44 if (aiocbp->ret == -1) aiocbp->error = errno;
52 if (aiocbp->ret == -1) aiocbp->error = errno;
89 if (aiocbp->ret == -1) aiocbp->error = errno;
163 return aiocbp->error;
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DSOAPBuilder.java46 public static String buildUpdateResponse(String sessionID, OSUError error) { argument
48 buildSppUpdateResponse(envelope.getChildren().get(0), sessionID, error);
111 OSUError error) {
117 if (error == null) {
125 if (error != null) {
127 errorAttributes.put("errorCode", OMAConstants.mapError(error));
110 buildSppUpdateResponse(XMLNode parent, String sessionID, OSUError error) argument
/frameworks/native/libs/vr/libbufferhub/
H A Dbuffer_hub_client.cpp51 return -status.error();
131 : LocalChannelHandle{nullptr, -status.error()});
148 return status ? 0 : -status.error();
193 Close(-status.error());
235 Close(-status.error());
272 Close(-status.error());
313 Close(-status.error());
338 Close(-status.error());
374 return -status.error();
394 : LocalChannelHandle{nullptr, -status.error()});
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DDiskStatsService.java74 IOException error = null;
81 error = e;
95 proto.write(DiskStatsServiceDumpProto.HAS_TEST_ERROR, error != null);
96 if (error != null) {
97 proto.write(DiskStatsServiceDumpProto.ERROR_MESSAGE, error.toString());
102 if (error != null) {
104 pw.println(error.toString());
/frameworks/compile/libbcc/lib/
H A DRSCompilerDriver.cpp120 // functions. Fail if verification returns an error.
165 std::error_code error; local
166 llvm::raw_fd_ostream out_stream(pOutputPath, error, llvm::sys::fs::F_RW);
167 if (error) {
169 error.message().c_str());
196 path.c_str(), error, llvm::sys::fs::F_RW | llvm::sys::fs::F_Text));
197 if (error) {
199 error.message().c_str());
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp139 EGLint error = eglGetError(); local
140 if (returnVal && error == EGL_SUCCESS) {
153 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error
155 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
156 error);
/frameworks/rs/tests/lldb/tests/
H A Drun_test.py53 True if the pre_run step completed without error. Currently the pre-run
90 log.error('unable to get pid of target')
136 False: if the test case failed or suffered an error.
150 log.error('test %s:%s failed: %r' % (state.name, test, err))
371 except DisconnectedException as error:
372 log.warning(error)
385 log.critical('Internal test suite error', exc_info=1)
386 print('Internal test suite error', file=sys.stderr)
394 except TestSuiteException as error:
396 log.exception(str(error))
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DRemotePrintDocument.java129 CharSequence error = mCurrentCommand.getError();
133 notifyUpdateFailed(error);
163 public void onUpdateFailed(CharSequence error); argument
351 throw new IllegalStateException("No update error to clear");
401 private void notifyUpdateFailed(CharSequence error) { argument
405 mUpdateCallbacks.onUpdateFailed(error);
679 protected final void failed(CharSequence error) { argument
685 mError = error;
821 private void handleOnLayoutFailed(CharSequence error, int sequence) { argument
832 failed(error);
984 onLayoutFailed(CharSequence error, int sequence) argument
1139 handleOnWriteFailed(CharSequence error, int sequence) argument
1273 onWriteFailed(CharSequence error, int sequence) argument
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcRects.cpp365 bool error; local
384 rect.displayFrame = hwcTestParseHwcRect(in, error);
385 if (error) {
453 rect.color = hwcTestParseColor(in, error);
454 if (error) {
466 rect.sourceDim = hwcTestParseDim(in, error);
467 if (error) {
473 rect.sourceCrop = hwcTestParseHwcRect(in, error);
474 if (error) {

Completed in 505 milliseconds

1234567891011>>