Home | History | Annotate | Download | only in HiiDatabaseDxe

Lines Matching defs:Decoder

56   system if the decoder of the certain image type is not supported by the

176 system if the decoder of the certain image type is not supported by the
247 Return the first HII image decoder instance which supports the DecoderName.
251 @retval Pointer to the HII image decoder instance.
259 EFI_HII_IMAGE_DECODER_PROTOCOL *Decoder;
287 Status = gBS->HandleProtocol (Handles[Index], &gEfiHiiImageDecoderProtocolGuid, (VOID **) &Decoder);
292 Status = Decoder->GetImageDecoderName (Decoder, &DecoderNames, &NumberOfDecoderName);
298 return Decoder;
311 system if the decoder of image type is not supported by the EFI_HII_IMAGE_EX_PROTOCOL.
343 EFI_HII_IMAGE_DECODER_PROTOCOL *Decoder;
371 Decoder = LocateHiiImageDecoder (CurrentImageBlock->BlockType);
372 if (Decoder == NULL) {
384 Status = Decoder->GetImageInfo (
385 Decoder,
392 // Spec requires to use the first capable image decoder instance.
393 // The first image decoder instance may fail to decode the image.