Searched refs:error (Results 176 - 200 of 524) sorted by relevance

1234567891011>>

/frameworks/native/vulkan/include/vulkan/
H A Dvk_platform.h56 #error "Vulkan requires the 'armeabi-v7a' or 'armeabi-v7a-hard' ABI on 32-bit ARM CPUs"
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DOMANode.java192 throw new IOException("Parse error: expected = or + after node name");
/frameworks/rs/driver/
H A DrsdProgramStore.cpp74 goto error;
115 goto error;
145 goto error;
150 error:
/frameworks/volley/src/test/java/com/android/volley/mock/
H A DMockResponseDelivery.java48 public void postError(Request<?> request, VolleyError error) { argument
H A DMockRequest.java71 public void deliverError(VolleyError error) { argument
72 super.deliverError(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 != Constants.SEND_RESULT_SUCCESS) {
H A DPowerStatusMonitorAction.java123 public void onSendCompleted(int error) {
126 if (error != Constants.SEND_RESULT_SUCCESS) {
H A DSystemAudioStatusAction.java58 public void onSendCompleted(int error) {
59 if (error != Constants.SEND_RESULT_SUCCESS) {
/frameworks/base/tools/aapt2/compile/
H A DIdAssigner.cpp48 context->getDiagnostics()->error(DiagMessage()
68 context->getDiagnostics()->error(DiagMessage()
/frameworks/base/tools/aapt2/link/
H A DManifestFixer.cpp46 diag->error(DiagMessage(el->lineNumber)
65 diag->error(DiagMessage(el->lineNumber)
73 diag->error(DiagMessage(el->lineNumber) << "<manifest> tag is missing 'package' attribute");
76 diag->error(DiagMessage(el->lineNumber)
80 diag->error(DiagMessage(el->lineNumber)
92 diag->error(DiagMessage() << "invalid manifest package override '"
100 diag->error(DiagMessage() << "invalid instrumentation target package override '"
259 context->getDiagnostics()->error(DiagMessage(doc->file.source)
H A DReferenceLinker.cpp104 // in the actual error message.
106 mContext->getDiagnostics()->error(msg);
115 mContext->getDiagnostics()->error(msg);
283 context->getDiagnostics()->error(errorMsg);
303 bool error = false; local
309 context->getDiagnostics()->error(
314 error = true;
326 error = true;
331 return !error;
/frameworks/compile/libbcc/
H A DAndroid.mk23 $(error FORCE_BUILD_LLVM_DISABLE_NDEBUG may only be true, false, or unset)
29 $(error FORCE_BUILD_LLVM_DEBUG may only be true, false, or unset)
/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/opt/net/wifi/tests/wifitests/jni/
H A Dwifi_hal_mock.h47 int get_int(const char* key, bool* error);
49 void get_byte_array(const char* key, bool* error, u8* array,
/frameworks/opt/setupwizard/library/
H A Dcommon-eclair-mr1.mk17 $(error LOCAL_RESOURCE_DIR must be defined)
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DRequestFuture.java31 * Used by providing as your response and error listeners. For example:
46 * // handle the error
48 * // handle the error
148 public synchronized void onErrorResponse(VolleyError error) { argument
149 mException = error;
H A DImageLoader.java92 * it will switch to either the actual image or the error image.
101 public void onErrorResponse(VolleyError error) {
129 * - onErrorResponse will be called if there was an error loading the image.
133 * Listens for non-error changes to the loading of the image request.
259 public void onErrorResponse(VolleyError error) {
260 onGetImageError(cacheKey, error);
299 protected void onGetImageError(String cacheKey, VolleyError error) { argument
305 // Set the error for this request
306 request.setError(error);
414 * Set the error fo
416 setError(VolleyError error) argument
[all...]
/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/base/services/core/jni/
H A Dcom_android_server_am_BatteryStatsService.cpp186 goto error;
191 goto error;
197 goto error;
206 goto error;
213 goto error;
286 error:
/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/native/services/surfaceflinger/
H A DLayer.cpp533 auto error = hwcLayer->setBlendMode(blendMode); local
534 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set blend mode %s:"
536 to_string(error).c_str(), static_cast<int32_t>(error));
590 auto error = hwcLayer->setDisplayFrame(transformedFrame); local
591 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set display frame "
594 transformedFrame.bottom, to_string(error).c_str(),
595 static_cast<int32_t>(error));
598 error = hwcLayer->setSourceCrop(sourceCrop);
599 ALOGE_IF(error !
659 auto error = hwcLayer->setTransform(transform); local
694 auto error = hwcLayer->setVisibleRegion(visible); local
804 auto error = mHwcLayers[hwcId].layer->setCursorPosition(position.left, local
1053 auto error = hwcLayer->setCompositionType(type); local
[all...]

Completed in 837 milliseconds

1234567891011>>