Lines Matching refs:err
93 status_t err = (status_t) FAILED_TRANSACTION; in getDisplayVisibleRegion() local
98 err = binder->dispatch(IQService::GET_DISPLAY_VISIBLE_REGION, in getDisplayVisibleRegion()
101 if(!err) { in getDisplayVisibleRegion()
108 __FUNCTION__, dpy, err); in getDisplayVisibleRegion()
110 return err; in getDisplayVisibleRegion()
118 status_t err = (status_t) FAILED_TRANSACTION; in setSecondaryDisplayStatus() local
125 err = binder->dispatch(IQService::SET_SECONDARY_DISPLAY_STATUS, in setSecondaryDisplayStatus()
128 if(err) in setSecondaryDisplayStatus()
130 status, err); in setSecondaryDisplayStatus()
132 return err; in setSecondaryDisplayStatus()
136 status_t err = (status_t) FAILED_TRANSACTION; in configureDynRefreshRate() local
143 err = binder->dispatch(IQService::CONFIGURE_DYN_REFRESH_RATE, in configureDynRefreshRate()
147 if(err) in configureDynRefreshRate()
148 ALOGE("%s: Failed setting op %d err=%d", __FUNCTION__, op, err); in configureDynRefreshRate()
150 return err; in configureDynRefreshRate()
159 status_t err = binder->dispatch(IQService::GET_CONFIG_COUNT, in getConfigCount() local
161 if(!err) { in getConfigCount()
165 ALOGE("%s() failed with err %d", __FUNCTION__, err); in getConfigCount()
177 status_t err = binder->dispatch(IQService::GET_ACTIVE_CONFIG, in getActiveConfig() local
179 if(!err) { in getActiveConfig()
184 ALOGE("%s() failed with err %d", __FUNCTION__, err); in getActiveConfig()
191 status_t err = (status_t) FAILED_TRANSACTION; in setActiveConfig() local
197 err = binder->dispatch(IQService::SET_ACTIVE_CONFIG, in setActiveConfig()
199 if(!err) { in setActiveConfig()
203 ALOGE("%s() failed with err %d", __FUNCTION__, err); in setActiveConfig()
206 return err; in setActiveConfig()
216 status_t err = binder->dispatch( in getDisplayAttributes() local
219 if(!err) { in getDisplayAttributes()
230 ALOGE("%s() failed with err %d", __FUNCTION__, err); in getDisplayAttributes()
237 status_t err = (status_t) FAILED_TRANSACTION; in setPanelMode() local
242 err = binder->dispatch(IQService::SET_DISPLAY_MODE, in setPanelMode()
244 if(!err) { in setPanelMode()
248 ALOGE("%s() failed with err %d", __FUNCTION__, err); in setPanelMode()
251 return err; in setPanelMode()
255 status_t err = (status_t) FAILED_TRANSACTION; in setPanelBrightness() local
261 status_t err = binder->dispatch(IQService::SET_PANEL_BRIGHTNESS, in setPanelBrightness() local
263 if(err) { in setPanelBrightness()
264 ALOGE("%s() failed with err %d", __FUNCTION__, err); in setPanelBrightness()
267 return err; in setPanelBrightness()
276 status_t err = binder->dispatch(IQService::GET_PANEL_BRIGHTNESS, in getPanelBrightness() local
278 if(!err) { in getPanelBrightness()
283 ALOGE("%s() failed with err %d", __FUNCTION__, err); in getPanelBrightness()
290 status_t err = (status_t) FAILED_TRANSACTION; in setDsiClk() local
297 status_t err = binder->dispatch(IQService::SET_DSI_CLK, &inParcel, &outParcel); in setDsiClk() local
298 if(err) { in setDsiClk()
299 ALOGE("%s() failed with err %d", __FUNCTION__, err); in setDsiClk()
302 return err; in setDsiClk()
312 status_t err = binder->dispatch(IQService::GET_DSI_CLK, &inParcel, &outParcel); in getDsiClk() local
313 if(!err) { in getDsiClk()
316 ALOGE("%s() failed with err %d", __FUNCTION__, err); in getDsiClk()
328 status_t err = binder->dispatch(IQService::GET_SUPPORTED_DSI_CLK, &inParcel, &outParcel); in getSupportedBitClk() local
329 if(err) { in getSupportedBitClk()
330 ALOGE("%s() failed with err %d", __FUNCTION__, err); in getSupportedBitClk()
331 return err; in getSupportedBitClk()
344 status_t err = (status_t) FAILED_TRANSACTION; in setPanelLuminanceAttributes() local
352 status_t err = binder->dispatch(IQService::SET_PANEL_LUMINANCE, &inParcel, &outParcel); in setPanelLuminanceAttributes() local
353 if(err) { in setPanelLuminanceAttributes()
354 ALOGE("%s() failed with err %d", __FUNCTION__, err); in setPanelLuminanceAttributes()
357 return err; in setPanelLuminanceAttributes()
366 status_t err = (status_t) FAILED_TRANSACTION; in minHdcpEncryptionLevelChanged() local
373 err = binder->dispatch(IQService::MIN_HDCP_ENCRYPTION_LEVEL_CHANGED, in minHdcpEncryptionLevelChanged()
377 if(err) { in minHdcpEncryptionLevelChanged()
378 ALOGE("%s: Failed for dpy %d err=%d", __FUNCTION__, dpy, err); in minHdcpEncryptionLevelChanged()
380 err = outParcel.readInt32(); in minHdcpEncryptionLevelChanged()
383 return err; in minHdcpEncryptionLevelChanged()
393 status_t err = (status_t) FAILED_TRANSACTION; in controlPartialUpdate() local
399 err = binder->dispatch(IQService::CONTROL_PARTIAL_UPDATE, &inParcel, &outParcel); in controlPartialUpdate()
400 if(err != 0) { in controlPartialUpdate()
401 ALOGE_IF(getBinder(), "%s() failed with err %d", __FUNCTION__, err); in controlPartialUpdate()
407 return err; in controlPartialUpdate()
434 status_t err = (status_t) FAILED_TRANSACTION; in setStandByMode() local
441 err = binder->dispatch(IQService::SET_STAND_BY_MODE, in setStandByMode()
443 if(err) { in setStandByMode()
444 ALOGE("%s() failed with err %d", __FUNCTION__, err); in setStandByMode()
447 return err; in setStandByMode()
451 status_t err = (status_t) FAILED_TRANSACTION; in getPanelResolution() local
456 err = binder->dispatch(IQService::GET_PANEL_RESOLUTION, in getPanelResolution()
458 if(err != 0) { in getPanelResolution()
459 ALOGE_IF(getBinder(), "%s() failed with err %d", __FUNCTION__, err); in getPanelResolution()
466 return err; in getPanelResolution()
470 status_t err = (status_t) FAILED_TRANSACTION; in delayFirstCommit() local
473 err = binder->dispatch(IQService::DELAY_FIRST_COMMIT, NULL, NULL); in delayFirstCommit()
474 if(err) { in delayFirstCommit()
475 ALOGE("%s() failed with err %d", __FUNCTION__, err); in delayFirstCommit()
478 return err; in delayFirstCommit()