• Home
  • Raw
  • Download

Lines Matching refs:disp

97                                 int disp,  in hwc_eventControl()  argument
106 ret = hwc->vsyncControl(disp, enabled); in hwc_eventControl()
120 static int hwc_blank(hwc_composer_device_1_t *dev, int disp, int blank) in hwc_blank() argument
123 bool ret = hwc->blank(disp, blank); in hwc_blank()
125 ETRACE("failed to blank disp %d, blank %d", disp, blank); in hwc_blank()
133 int disp, in hwc_getDisplayConfigs() argument
138 bool ret = hwc->getDisplayConfigs(disp, configs, numConfigs); in hwc_getDisplayConfigs()
140 WTRACE("failed to get configs of disp %d", disp); in hwc_getDisplayConfigs()
148 int disp, in hwc_getDisplayAttributes() argument
154 bool ret = hwc->getDisplayAttributes(disp, config, attributes, values); in hwc_getDisplayAttributes()
156 WTRACE("failed to get attributes of disp %d", disp); in hwc_getDisplayAttributes()
163 static int hwc_compositionComplete(hwc_composer_device_1_t *dev, int disp) in hwc_compositionComplete() argument
166 bool ret = hwc->compositionComplete(disp); in hwc_compositionComplete()
168 ETRACE("failed for disp %d", disp); in hwc_compositionComplete()
175 static int hwc_setPowerMode(hwc_composer_device_1_t *dev, int disp, int mode) in hwc_setPowerMode() argument
178 bool ret = hwc->setPowerMode(disp, mode); in hwc_setPowerMode()
180 WTRACE("failed to set power mode of disp %d", disp); in hwc_setPowerMode()
187 static int hwc_getActiveConfig(hwc_composer_device_1_t *dev, int disp) in hwc_getActiveConfig() argument
190 int ret = hwc->getActiveConfig(disp); in hwc_getActiveConfig()
192 WTRACE("failed to get active config of disp %d", disp); in hwc_getActiveConfig()
199 static int hwc_setActiveConfig(hwc_composer_device_1_t *dev, int disp, int index) in hwc_setActiveConfig() argument
202 bool ret = hwc->setActiveConfig(disp, index); in hwc_setActiveConfig()
204 WTRACE("failed to set active config of disp %d", disp); in hwc_setActiveConfig()
211 static int hwc_setCursorPositionAsync(hwc_composer_device_1_t *dev, int disp, int x, int y) in hwc_setCursorPositionAsync() argument
214 bool ret = hwc->setCursorPositionAsync(disp, x, y); in hwc_setCursorPositionAsync()
216 WTRACE("failed to set cursor position of disp %d", disp); in hwc_setCursorPositionAsync()