/drivers/peripheral/display/hal/default_standard/src/display_layer_video/ |
H A D | display_layer_video.cpp | 50 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId)
in CreateLayer() argument 53 DISPLAY_CHK_RETURN((layerInfo == nullptr), DISPLAY_NULL_PTR, DISPLAY_LOGE("layerInfo is nullptr"));
in CreateLayer() 55 LayerInfo info = *layerInfo;
in CreateLayer()
|
/drivers/peripheral/display/composer/test/fuzztest/layer_fuzzer/ |
H A D | layer_fuzzer.cpp | 56 static int32_t GetLayerInfo(LayerInfo& layerInfo) in GetLayerInfo() argument 69 layerInfo.width = GetData<uint32_t>() % WIDTH; in GetLayerInfo() 70 layerInfo.height = GetData<uint32_t>() % HEIGHT; in GetLayerInfo() 71 layerInfo.type = CONVERT_TABLE_LAYER_TYPE[GetData<uint32_t>() % lenLayerType]; in GetLayerInfo() 72 layerInfo.bpp = GetData<uint32_t>(); in GetLayerInfo() 73 layerInfo.pixFormat = CONVERT_TABLE_FORMAT[GetData<uint32_t>() % lenFormat]; in GetLayerInfo() 137 LayerInfo layerInfo; in UsingCreateLayer() local 138 int32_t ret = GetLayerInfo(layerInfo); in UsingCreateLayer() 145 ret = g_composerInterface->CreateLayer(devId, layerInfo, bufferCount, layerId); in UsingCreateLayer()
|
/drivers/peripheral/display/composer/vdi_base/src/ |
H A D | hdi_display.cpp | 89 int32_t HdiDisplay::CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() argument 93 DISPLAY_CHK_RETURN((layerInfo == nullptr), DISPLAY_PARAM_ERR, DISPLAY_LOGE("LayerInfo is null")); in CreateLayer() 95 auto layer = CreateHdiLayer(layerInfo->type); in CreateLayer()
|
H A D | display_composer_vdi_impl.cpp | 213 int32_t DisplayComposerVdiImpl::CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) in CreateLayer() argument 215 int32_t ec = HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::CreateLayer, &layerInfo, &layerId); in CreateLayer()
|
H A D | hdi_session.cpp | 256 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() argument 260 return HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::CreateLayer, layerInfo, layerId); in CreateLayer()
|
/drivers/peripheral/display/hal/default_standard/src/display_device/core/ |
H A D | hdi_display.cpp | 90 int32_t HdiDisplay::CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId)
in CreateLayer() argument 94 DISPLAY_CHK_RETURN((layerInfo == nullptr), DISPLAY_PARAM_ERR, DISPLAY_LOGE("LayerInfo is null"));
in CreateLayer() 96 auto layer = CreateHdiLayer(layerInfo->type);
in CreateLayer()
|
H A D | hdi_display.h | 86 virtual int32_t CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId);
|
H A D | hdi_session.cpp | 232 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId)
in CreateLayer() argument 236 return HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::CreateLayer, layerInfo, layerId);
in CreateLayer()
|
/drivers/peripheral/display/hal/default_standard/src/display_device/composer/ |
H A D | hdi_video_composition.cpp | 55 LayerInfo layerInfo = { rect.w, rect.h, LAYER_TYPE_OVERLAY, 8, PIXEL_FMT_YCRCB_420_P }; // the bpp of yuv is 8
in CreateVideoLayerForHdiLayer() local 56 int ret = layerFuncs_->CreateLayer(0, &layerInfo, &voLayerId);
in CreateVideoLayerForHdiLayer()
|
/drivers/peripheral/display/composer/test/benchmark/ |
H A D | display_benchmark_test.cpp | 226 LayerInfo layerInfo; in BENCHMARK_F() local 230 ret = g_composerDevice->CreateLayer(g_displayIds[0], layerInfo, bufferCount, layerId); in BENCHMARK_F() 456 LayerInfo layerInfo; in BENCHMARK_F() local 461 ret = g_composerDevice->CreateLayer(g_displayIds[0], layerInfo, bufferCount, layerId); in BENCHMARK_F()
|
/drivers/peripheral/display/composer/vdi_base/include/ |
H A D | hdi_display.h | 91 virtual int32_t CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId);
|
H A D | display_composer_vdi_impl.h | 58 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) override;
|
/drivers/peripheral/display/hal/default/ |
H A D | display_layer.c | 272 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() argument 274 if (layerInfo == NULL || layerId == NULL) { in CreateLayer() 290 priv->pitch = layerInfo->width * BITS_PER_PIXEL / BITS_TO_BYTE; in CreateLayer()
|
/drivers/peripheral/display/composer/hdi_service/include/ |
H A D | display_composer_service.h | 62 int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount, uint32_t& layerId) override;
|
H A D | idisplay_composer_vdi.h | 65 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) = 0;
|
/drivers/peripheral/display/hal/default_standard/src/display_device/ |
H A D | display_composer_vdi_impl.h | 58 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) override;
|
H A D | display_composer_vdi_impl.cpp | 227 int32_t DisplayComposerVdiImpl::CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) in CreateLayer() argument 230 int32_t ec = composerModel_->CallDisplayFunction(devId, &HdiDisplay::CreateLayer, &layerInfo, &layerId); in CreateLayer()
|
/drivers/peripheral/display/interfaces/include/ |
H A D | display_layer.h | 100 * @param layerInfo Indicates the pointer to the layer information passed to open a layer, including the layer 112 int32_t (*CreateLayer)(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId);
|
/drivers/peripheral/display/hdi_service/device/src/server/ |
H A D | display_device_service.cpp | 208 int32_t DisplayDeviceService::CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) in CreateLayer() argument 210 return displayLayer_->CreateLayer(devId, &layerInfo, &layerId); in CreateLayer()
|
/drivers/interface/display/composer/v1_0/hdi_impl/ |
H A D | display_composer_hdi_impl.h | 344 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount, 348 return ToDispErrCode(hdi_->CreateLayer(devId, layerInfo, cacheCount, layerId));
|
/drivers/interface/display/composer/v1_0/include/ |
H A D | idisplay_composer_interface.h | 532 * @param layerInfo Indicates the pointer to the layer information passed to open a layer, including the layer 544 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount, uint32_t& layerId) = 0;
|
/drivers/peripheral/display/hdi_service/device/include/interfaces/ |
H A D | idisplay_device.h | 76 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) = 0;
|
/drivers/peripheral/display/hdi_service/device/include/proxy/ |
H A D | display_device_proxy.h | 70 int32_t CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) override;
|
/drivers/peripheral/display/hdi_service/device/include/server/ |
H A D | display_device_service.h | 66 int32_t CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) override;
|
/drivers/peripheral/display/composer/hdi_service/src/ |
H A D | display_composer_service.cpp | 497 int32_t DisplayComposerService::CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount, in CreateLayer() argument 503 int32_t ret = vdiImpl_->CreateLayer(devId, layerInfo, layerId); in CreateLayer()
|