Searched refs:error (Results 101 - 125 of 363) sorted by relevance

1234567891011>>

/hardware/ti/omap4xxx/camera/
H A DMemoryManager.cpp69 goto error;
72 ///Initialize the array with zeros - this will help us while freeing the array in case of error
88 CAMHAL_LOGEB("ion_alloc resulted in error %d", ret);
89 goto error;
96 CAMHAL_LOGEB("Userspace mapping of ION buffers returned error %d", ret);
98 goto error;
115 error:
116 ALOGE("Freeing buffers already allocated after error occurred");
/hardware/qcom/bt/msm8909/libbt-vendor/src/
H A Dhw_rome.c221 ALOGI("%s: Undefined error (0x%x)", __FUNCTION__, err);
571 goto error;
577 goto error;
580 error:
623 goto error;
631 goto error;
657 goto error;
665 goto error;
672 error:
753 error
[all...]
/hardware/qcom/bt/msm8992/libbt-vendor/src/
H A Dhw_rome.c218 ALOGI("%s: Undefined error (0x%x)", __FUNCTION__, err);
553 goto error;
559 goto error;
562 error:
605 goto error;
613 goto error;
639 goto error;
647 goto error;
654 error:
735 error
[all...]
/hardware/qcom/bt/msm8996/libbt-vendor/src/
H A Dhw_rome.c218 ALOGI("%s: Undefined error (0x%x)", __FUNCTION__, err);
553 goto error;
559 goto error;
562 error:
605 goto error;
613 goto error;
639 goto error;
647 goto error;
654 error:
735 error
[all...]
/hardware/qcom/display/msm8996/sdm/libs/hwc/
H A Dhwc_display_virtual.cpp166 DisplayError error = display_intf_->Flush(); local
167 if (error != kErrorNone) {
168 DLOGE("Flush failed. Error = %d", error);
191 DisplayError error = kErrorNone; local
234 error = display_intf_->SetActiveConfig(&variable_info);
235 if (error != kErrorNone) {
322 int error = sync_wait(content_list->outbufAcquireFenceFd, 1000); local
323 if (error < 0) {
324 DLOGW("sync_wait error errno = %d, desc = %s", errno, strerror(errno));
/hardware/ti/omap4-aah/hwc/
H A Dhal_public.h179 #error GRALLOC_USAGE_SYSTEM_HEAP should only be defined by hal_public.h
185 #error GRALLOC_USAGE_PHYS_CONTIG should only be defined by hal_public.h
/hardware/intel/bootstub/
H A De820_bios.S137 jc error /* EFLGAS.CF is set */
139 jne error /* eax is not 'SMAP' */
141 jl error /* returned buffer len < 20 */
143 jg error /* returned buffer len > provided buffer len */
157 error: label
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Ddhdu_linux.c40 #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
[all...]
/hardware/qcom/display/msm8996/sdm/libs/core/fb/
H A Dhw_hdmi.cpp83 DisplayError error = kErrorNone; local
87 error = hw_fb_hdmi->Init(NULL);
88 if (error != kErrorNone) {
93 return error;
112 DisplayError error = kErrorNone; local
117 error = HWDevice::Init(eventhandler);
118 if (error != kErrorNone) {
119 return error;
122 error = ReadEDIDInfo();
123 if (error !
380 DisplayError error = kErrorNone; local
[all...]
H A Dhw_primary.cpp57 DisplayError error = kErrorNone; local
61 error = hw_primary->Init(eventhandler);
62 if (error != kErrorNone) {
68 return error;
87 DisplayError error = kErrorNone; local
93 error = HWDevice::Init(eventhandler);
94 if (error != kErrorNone) {
98 error = PopulateDisplayAttributes();
99 if (error != kErrorNone) {
117 DLOGE("open failed for event=%d, error
395 DisplayError error = PopulateDisplayAttributes(); local
499 int error = Sys::poll_(poll_fds_, kNumDisplayEvents, -1); local
[all...]
/hardware/bsp/intel/peripheral/libupm/src/nrf8001/
H A Dhal_aci_tl.cxx331 mraa_result_t error = MRAA_SUCCESS; local
372 error = mraa_gpio_dir (a_pins->m_rdy_ctx, MRAA_GPIO_IN);
373 if (error != MRAA_SUCCESS) {
377 error = mraa_gpio_dir (a_pins->m_req_ctx, MRAA_GPIO_OUT);
378 if (error != MRAA_SUCCESS) {
382 error = mraa_gpio_dir (a_pins->m_rst_ctx, MRAA_GPIO_OUT);
383 if (error != MRAA_SUCCESS) {
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Ddct32x32_test.cc120 const uint32_t error = diff * diff; local
121 if (max_error < error)
122 max_error = error;
123 total_error += error;
133 << "Error: 32x32 FDCT/IDCT has an individual round-trip error > 1";
136 << "Error: 32x32 FDCT/IDCT has average round-trip error > 1 per block";
235 const int error = diff * diff; local
236 EXPECT_GE(1, error)
237 << "Error: 32x32 IDCT has error " << error
[all...]
H A Dvp8_fdct4x4_test.cc150 const int error = diff * diff; local
151 if (max_error < error)
152 max_error = error;
153 total_error += error;
158 << "Error: FDCT/IDCT has an individual roundtrip error > 1";
161 << "Error: FDCT/IDCT has average roundtrip error > 1 per block";
H A Dfdct8x8_test.cc160 const int error = diff * diff; local
161 if (max_error < error)
162 max_error = error;
163 total_error += error;
169 << " roundtrip error > 1";
173 << "error > 1/5 per block";
201 const int error = diff * diff; local
202 if (max_error < error)
203 max_error = error;
204 total_error += error;
[all...]
/hardware/bsp/intel/peripheral/libmraa/src/x86/
H A Dintel_sofia_3gr.c49 goto error;
55 goto error;
99 error:
/hardware/intel/common/libva/test/vainfo/
H A Dvainfo.c34 fprintf(stderr,"%s failed with error code %d (%s),exit\n",func, va_status, vaErrorStr(va_status)); \
36 goto error; \
126 goto error;
148 error:
/hardware/intel/common/libva/va/glx/
H A Dva_glx.c95 goto error;
99 goto error;
108 error:
/hardware/bsp/intel/peripheral/libupm/src/htu21d/
H A Dhtu21d.cpp210 mraa::Result error = mraa::SUCCESS; local
214 error = m_i2ControlCtx.write (data, 2);
215 if ( error != mraa::SUCCESS)
219 return error;
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/test/
H A DJPEGTestEnc.h79 error = OMX_ErrorInsufficientResources; \
/hardware/ti/omap4-aah/camera/
H A DMemoryManager.cpp55 CAMHAL_LOGE("ion_open() failed, error: %d", mIonFd);
78 goto error;
81 ///Initialize the array with zeros - this will help us while freeing the array in case of error
103 goto error;
109 CAMHAL_LOGEB("Userspace mapping of ION buffers returned error %d", ret);
111 goto error;
130 error:
132 CAMHAL_LOGE("Freeing buffers already allocated after error occurred");
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
H A Donyxd_int.h142 vpx_internal_error(&pbi->common.error, VPX_CODEC_MEM_ERROR,\
150 vpx_internal_error(&pbi->common.error, VPX_CODEC_MEM_ERROR,\
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_common.h71 vpx_internal_error(&cm->error, VPX_CODEC_MEM_ERROR, \
79 vpx_internal_error(&cm->error, VPX_CODEC_MEM_ERROR, \
/hardware/intel/img/psb_video/src/hwdefs/
H A Dcoreflags.h45 # error "H264 is not defined when RCMODE is ALL."
49 # error "RCMODE_ALL is only allowed for H264."
/hardware/qcom/camera/mm-image-codec/qomx_core/
H A Dqomx_core.c215 goto error;
224 goto error;
237 goto error;
247 goto error;
255 goto error;
270 error:
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
H A Dts_parser.cpp50 error = false;
130 if (!reorder_ts || error || !header) {
131 if (error || !header)
140 DEBUG("\n Table full return error");
183 if (!reorder_ts || error) {
215 if (!reorder_ts || error || !header) {
216 if (error || !header)

Completed in 1300 milliseconds

1234567891011>>