/frameworks/base/core/jni/android/graphics/pdf/ |
PdfRenderer.cpp | 71 ALOGE("Cannot read from file descriptor. Error:%d", errno); 88 const long error = FPDF_GetLastError(); local 89 switch (error) { 93 "cannot create document. Error: %ld", error); 97 "cannot create document. Error: %ld", error); 229 ALOGE("Error rendering page!");
|
/frameworks/base/core/jni/ |
android_hardware_camera2_legacy_PerfMeasurement.cpp | 83 int error; local 84 if ((error = glGetError()) != GL_NO_ERROR) { 86 "GLES20 error: 0x%d", error); 182 * and FAILED_MEASUREMENT if an error occurred during the next 267 "Unknown error starting GL timing"); 287 "Unknown error ending GL timing");
|
android_view_GraphicBuffer.cpp | 113 status_t error; local 114 sp<GraphicBuffer> buffer(alloc->createGraphicBuffer(width, height, format, usage, &error));
|
/frameworks/base/libs/hwui/ |
LayerRenderer.cpp | 375 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 = glGetError()) != GL_NO_ERROR) goto error [all...] |
/frameworks/base/libs/hwui/renderthread/ |
CanvasContext.cpp | 148 EGLint error = 0; local 149 mHaveNewSurface |= mEglManager.makeCurrent(mEglSurface, &error); 150 if (error) {
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
GLToolbox.java | 118 // For some devices, "pixels" being null causes system error. 174 int error; local 175 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) { 176 throw new RuntimeException("GL Operation '" + operation + "' caused error " 177 + Integer.toHexString(error) + "!");
|
/frameworks/base/tools/aapt2/ |
BinaryResourceParser.cpp | 129 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(mSource [all...] |
ManifestMerger.cpp | 87 mLogger.error(elB->lineNumber) 100 mLogger.error(elB->lineNumber) 164 bool error = false; local 181 out = &(mAppLogger.error(elA->lineNumber) << "app declares "); 183 out = &(mAppLogger.error(elA->lineNumber) << "app has implied "); 185 out = &(mAppLogger.error() << "app has implied "); 195 error = true; 228 error = true; 230 return !error; 238 bool error = false local 293 bool error = false; local [all...] |
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/ |
LayoutLibTestCallback.java | 90 mLog.error(null, "Unknown field type in R class: %1$s", type); 93 mLog.error(ignored, "Malformed R class: %1$s", PACKAGE_NAME + ".R");
|
/frameworks/compile/libbcc/bcinfo/ |
MetadataExtractor.cpp | 503 std::string error; local
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSScriptGroupFusion.cpp | 145 int error = getFusedFuncSig(sources, slots, signature); local 147 if (error < 0) {
|
/frameworks/compile/mclinker/include/mcld/Support/ |
FileHandle.h | 28 GoodBit = 0, // no error 29 BadBit = 1L << 0, // error due to the inappropriate operation 118 int error() const { return errno; } function in class:mcld::FileHandle
|
/frameworks/native/opengl/libs/EGL/ |
egl.cpp | 70 * - set system property "debug.egl.trace" to "error" to trace all apps. 112 sEGLGetErrorEnabled = !strcasecmp(value, "error"); 158 ALOGE("Error starting Tracer for OpenGL ES. Disabling.."); 216 char const* const error = "call to OpenGL ES API with " local 219 ALOGE(error); 221 LOG_ALWAYS_FATAL(error); 311 // implementation too, so we don't have to generate a GL error here
|
/frameworks/native/opengl/tests/gl2_basic/ |
gl2_basic.cpp | 37 // 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/gl2_copyTexImage/ |
gl2_copyTexImage.cpp | 37 // 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_jni/src/com/android/gl2jni/ |
GL2JNIView.java | 95 int error; local 96 while ((error = egl.eglGetError()) != EGL10.EGL_SUCCESS) { 97 Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error));
|
/frameworks/native/opengl/tests/gl_basic/ |
gl_basic.cpp | 139 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/native/opengl/tests/gl_perfapp/src/com/android/glperf/ |
GLPerfView.java | 95 int error; local 96 while ((error = egl.eglGetError()) != EGL10.EGL_SUCCESS) { 97 Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error));
|
/frameworks/native/opengl/tests/gl_yuvtex/ |
gl_yuvtex.cpp | 39 // 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/native/opengl/tests/gldual/src/com/android/gldual/ |
GLDualGL2View.java | 98 int error; local 99 while ((error = egl.eglGetError()) != EGL10.EGL_SUCCESS) { 100 Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error));
|
/frameworks/native/opengl/tests/hwc/ |
hwcColorEquiv.cpp | 167 bool error; local 202 startRefColor = hwcTestParseColor(in, error); 203 // Any parse error or characters not used by parser 204 if (error 224 endRefColor = hwcTestParseColor(in, error); 225 // Any parse error or characters not used by parser 226 if (error
|
hwcRects.cpp | 277 // Error anytime there is more closing then opening characters 365 bool error; local 373 testPrintE("Error parsing format from: %s", rectStr.c_str()); 384 rect.displayFrame = hwcTestParseHwcRect(in, error); 385 if (error) { 410 testPrintE("Error reading attribute name in: %s", 453 rect.color = hwcTestParseColor(in, error); 454 if (error) { 455 testPrintE("Error parsing color in: %s", rectStr.c_str()); 461 testPrintE("Error parsing value for alpha attribute in: %s" [all...] |
/frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/ |
TestLatencyView.java | 217 int error; local 218 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) { 219 Log.e(TAG, op + ": glError " + error); 220 throw new RuntimeException(op + ": glError " + error);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
CarrierServiceBindHelper.java | 208 String error; local 214 error = "bindService returned false"; 216 error = ex.getMessage(); 220 ". Error: " + error);
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
dhdu_linux.c | 40 #include <error.h> 384 int error = BCME_OK; local 387 error = (int)ioctl_queryinformation_fe(wl, WL_OID_BASE + cmd, buf, &len); 389 error = (int)ioctl_queryinformation_fe(wl, cmd, buf, &len); 391 if (error == BCME_SERIAL_PORT_ERR) 394 if (error != 0) 397 return error; 406 int error = BCME_OK; local 410 error = (int)ioctl_setinformation_fe(wl, WL_OID_BASE + cmd, buf, &len); 412 error = (int)ioctl_setinformation_fe(wl, cmd, buf, &len) [all...] |